@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version : Python 3.12\n "
1313"Report-Msgid-Bugs-To : \n "
14- "POT-Creation-Date : 2024-11-29 14:50 +0000\n "
14+ "POT-Creation-Date : 2024-12-06 14:52 +0000\n "
1515"PO-Revision-Date : 2024-05-11 00:34+0000\n "
1616"Last-Translator : Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n "
1717"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
@@ -387,12 +387,13 @@ msgstr ""
387387msgid ""
388388"These equivalences assume that :const:`__debug__` and :exc:`AssertionError` "
389389"refer to the built-in variables with those names. In the current "
390- "implementation, the built-in variable :const:`__debug__` is ``True`` under "
391- "normal circumstances, ``False`` when optimization is requested (command line "
392- "option :option:`-O`). The current code generator emits no code for an "
393- "assert statement when optimization is requested at compile time. Note that "
394- "it is unnecessary to include the source code for the expression that failed "
395- "in the error message; it will be displayed as part of the stack trace."
390+ "implementation, the built-in variable ``__debug__`` is ``True`` under normal "
391+ "circumstances, ``False`` when optimization is requested (command line "
392+ "option :option:`-O`). The current code generator emits no code for an :"
393+ "keyword:`assert` statement when optimization is requested at compile time. "
394+ "Note that it is unnecessary to include the source code for the expression "
395+ "that failed in the error message; it will be displayed as part of the stack "
396+ "trace."
396397msgstr ""
397398
398399msgid ""
@@ -490,7 +491,7 @@ msgstr ""
490491
491492msgid ""
492493"A :keyword:`yield` statement is semantically equivalent to a :ref:`yield "
493- "expression <yieldexpr>`. The yield statement can be used to omit the "
494+ "expression <yieldexpr>`. The `` yield`` statement can be used to omit the "
494495"parentheses that would otherwise be required in the equivalent yield "
495496"expression statement. For example, the yield statements ::"
496497msgstr ""
@@ -511,8 +512,9 @@ msgstr ""
511512msgid ""
512513"Yield expressions and statements are only used when defining a :term:"
513514"`generator` function, and are only used in the body of the generator "
514- "function. Using yield in a function definition is sufficient to cause that "
515- "definition to create a generator function instead of a normal function."
515+ "function. Using :keyword:`yield` in a function definition is sufficient to "
516+ "cause that definition to create a generator function instead of a normal "
517+ "function."
516518msgstr ""
517519
518520msgid ""
@@ -951,29 +953,16 @@ msgid "The :keyword:`!global` statement"
951953msgstr ""
952954
953955msgid ""
954- "The :keyword:`global` statement is a declaration which holds for the entire "
955- "current code block. It means that the listed identifiers are to be "
956- "interpreted as globals. It would be impossible to assign to a global "
956+ "The :keyword:`global` statement causes the listed identifiers to be "
957+ "interpreted as globals. It would be impossible to assign to a global "
957958"variable without :keyword:`!global`, although free variables may refer to "
958959"globals without being declared global."
959960msgstr ""
960961
961962msgid ""
962- "Names listed in a :keyword:`global` statement must not be used in the same "
963- "code block textually preceding that :keyword:`!global` statement."
964- msgstr ""
965-
966- msgid ""
967- "Names listed in a :keyword:`global` statement must not be defined as formal "
968- "parameters, or as targets in :keyword:`with` statements or :keyword:`except` "
969- "clauses, or in a :keyword:`for` target list, :keyword:`class` definition, "
970- "function definition, :keyword:`import` statement, or variable annotation."
971- msgstr ""
972-
973- msgid ""
974- "The current implementation does not enforce some of these restrictions, but "
975- "programs should not abuse this freedom, as future implementations may "
976- "enforce them or silently change the meaning of the program."
963+ "The :keyword:`global` statement applies to the entire scope of a function or "
964+ "class body. A :exc:`SyntaxError` is raised if a variable is used or assigned "
965+ "to prior to its global declaration in the scope."
977966msgstr ""
978967
979968msgid ""
@@ -1002,9 +991,9 @@ msgid ""
1002991msgstr ""
1003992
1004993msgid ""
1005- "The nonlocal statement applies to the entire scope of a function or class "
1006- "body. A :exc:`SyntaxError` is raised if a variable is used or assigned to "
1007- "prior to its nonlocal declaration in the scope."
994+ "The :keyword:` nonlocal` statement applies to the entire scope of a function "
995+ "or class body. A :exc:`SyntaxError` is raised if a variable is used or "
996+ "assigned to prior to its nonlocal declaration in the scope."
1008997msgstr ""
1009998
1010999msgid ":pep:`3104` - Access to Names in Outer Scopes"
0 commit comments