@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version : Python 3.14\n "
1313"Report-Msgid-Bugs-To : \n "
14- "POT-Creation-Date : 2026-05-03 14:43 +0000\n "
14+ "POT-Creation-Date : 2026-05-05 15:48 +0000\n "
1515"PO-Revision-Date : 2025-09-16 00:00+0000\n "
1616"Last-Translator : python-doc bot, 2025\n "
1717"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
@@ -500,6 +500,21 @@ msgid ""
500500"`Ellipsis`."
501501msgstr ""
502502
503+ msgid ""
504+ "The ``kind`` attribute is an optional string. For string literals with a "
505+ "``u`` prefix, ``kind`` is set to ``'u'``. For all other constants, ``kind`` "
506+ "is ``None``."
507+ msgstr ""
508+
509+ msgid ""
510+ ">>> print(ast.dump(ast.parse('123', mode='eval'), indent=4))\n"
511+ "Expression(\n"
512+ " body=Constant(value=123))\n"
513+ ">>> print(ast.dump(ast.parse(\" u'hello'\" , mode='eval'), indent=4))\n"
514+ "Expression(\n"
515+ " body=Constant(value='hello', kind='u'))"
516+ msgstr ""
517+
503518msgid ""
504519"Node representing a single formatting field in an f-string. If the string "
505520"contains a single formatting field and nothing else the node can be isolated "
@@ -2826,6 +2841,17 @@ msgid ""
28262841" type_ignores=[])"
28272842msgstr ""
28282843
2844+ msgid "Recursively compares two ASTs."
2845+ msgstr ""
2846+
2847+ msgid ""
2848+ "*compare_attributes* affects whether AST attributes are considered in the "
2849+ "comparison. If *compare_attributes* is ``False`` (default), then attributes "
2850+ "are ignored. Otherwise they must all be equal. This option is useful to "
2851+ "check whether the ASTs are structurally equal but differ in whitespace or "
2852+ "similar details. Attributes include line numbers and column offsets."
2853+ msgstr ""
2854+
28292855msgid "Compiler flags"
28302856msgstr ""
28312857
@@ -2854,17 +2880,6 @@ msgid ""
28542880"<type>``, ``# type: ignore <stuff>``)."
28552881msgstr ""
28562882
2857- msgid "Recursively compares two ASTs."
2858- msgstr ""
2859-
2860- msgid ""
2861- "*compare_attributes* affects whether AST attributes are considered in the "
2862- "comparison. If *compare_attributes* is ``False`` (default), then attributes "
2863- "are ignored. Otherwise they must all be equal. This option is useful to "
2864- "check whether the ASTs are structurally equal but differ in whitespace or "
2865- "similar details. Attributes include line numbers and column offsets."
2866- msgstr ""
2867-
28682883msgid "Command-line usage"
28692884msgstr ""
28702885
0 commit comments