@@ -12,7 +12,7 @@ msgid ""
1212msgstr ""
1313"Project-Id-Version : Python 3.13\n "
1414"Report-Msgid-Bugs-To : \n "
15- "POT-Creation-Date : 2025-12-01 15:07+0000\n "
15+ "POT-Creation-Date : 2025-12-15 15:07+0000\n "
1616"PO-Revision-Date : 2025-09-15 01:04+0000\n "
1717"Last-Translator : Maciej Olko <maciej.olko@gmail.com>, 2025\n "
1818"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
@@ -769,11 +769,9 @@ msgstr ""
769769"lub ``2`` (docstrings są również usuwane)."
770770
771771msgid ""
772- "This function raises :exc:`SyntaxError` if the compiled source is invalid, "
773- "and :exc:`ValueError` if the source contains null bytes ."
772+ "This function raises :exc:`SyntaxError` or :exc:`ValueError` if the compiled "
773+ "source is invalid ."
774774msgstr ""
775- "To funkcja rzuci :exc:`SyntaxError` jeśli skompilowane źródło jest "
776- "nieprawidłowe, a :exc:`ValueError` jeśli źródło zawiera bajty null."
777775
778776msgid ""
779777"If you want to parse Python code into its AST representation, see :func:`ast."
@@ -1146,37 +1144,22 @@ msgstr ""
11461144"dostarczonymi przez użytkownika może prowadzić do luk w zabezpieczeniach."
11471145
11481146msgid ""
1149- "The *expression * argument is parsed and evaluated as a Python expression "
1147+ "The *source * argument is parsed and evaluated as a Python expression "
11501148"(technically speaking, a condition list) using the *globals* and *locals* "
11511149"mappings as global and local namespace. If the *globals* dictionary is "
11521150"present and does not contain a value for the key ``__builtins__``, a "
11531151"reference to the dictionary of the built-in module :mod:`builtins` is "
1154- "inserted under that key before *expression * is parsed. That way you can "
1155- "control what builtins are available to the executed code by inserting your "
1156- "own ``__builtins__`` dictionary into *globals* before passing it to :func:"
1152+ "inserted under that key before *source * is parsed. That way you can control "
1153+ "what builtins are available to the executed code by inserting your own "
1154+ "``__builtins__`` dictionary into *globals* before passing it to :func:"
11571155"`eval`. If the *locals* mapping is omitted it defaults to the *globals* "
1158- "dictionary. If both mappings are omitted, the expression is executed with "
1159- "the *globals* and *locals* in the environment where :func:`eval` is called. "
1156+ "dictionary. If both mappings are omitted, the source is executed with the "
1157+ "*globals* and *locals* in the environment where :func:`eval` is called. "
11601158"Note, *eval()* will only have access to the :term:`nested scopes <nested "
11611159"scope>` (non-locals) in the enclosing environment if they are already "
11621160"referenced in the scope that is calling :func:`eval` (e.g. via a :keyword:"
11631161"`nonlocal` statement)."
11641162msgstr ""
1165- "Argument *expression* jest analizowany i ewaluowany jako wyrażenie Python "
1166- "(technicznie rzecz biorąc, lista warunków) przy użyciu mapowań *globals* i "
1167- "*locals* jako globalnej i lokalnej przestrzeni nazw. Jeśli *globals* "
1168- "słownik jest obecny i nie zawiera wartości dla klucza ``__builtins__``, "
1169- "odwołanie do słownika z wbudowanej moduły :mod:`builtins` jest wstawiane pod "
1170- "tym kluczem, zanim *expression* zostanie przeanalizowane. W ten sposób "
1171- "można kontrolować, jakie wbudowany są dostępne dla wykonywanego kodu, "
1172- "wstawiając własne ``__builtins__`` słownik do *globals* przed przekazaniem "
1173- "go do :func:`eval`. Jeśli mapowanie *locals* zostanie pominięte, domyślnie "
1174- "będzie to *globals* słownik. Jeśli oba mapowania są pominięte, wyrażenie "
1175- "jest wykonywane z *globals* i *locals* w środowisku, w którym wywoływane "
1176- "jest :func:`eval`. Uwaga, *eval()* będzie miał dostęp do :term:"
1177- "`zagnieżdżonych zakresów <nested scope>` (non-locals) w otaczającym "
1178- "środowisku tylko wtedy, gdy są one już przywoływane w zakresie, który "
1179- "wywołuje :func:`eval` (np. poprzez instrukcję :keyword:`nonlocal` )."
11801163
11811164msgid "Example:"
11821165msgstr "Przykład:"
0 commit comments