@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version : Python 3.15\n "
1313"Report-Msgid-Bugs-To : \n "
14- "POT-Creation-Date : 2026-08-05 15:56 +0000\n "
14+ "POT-Creation-Date : 2026-08-17 14:20 +0000\n "
1515"PO-Revision-Date : 2025-09-16 00:01+0000\n "
1616"Last-Translator : python-doc bot, 2025\n "
1717"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
@@ -864,7 +864,7 @@ msgid "[sign] ['0x'] integer ['.' fraction] ['p' exponent]"
864864msgstr ""
865865
866866msgid ""
867- "where the optional ``sign`` may by either ``+`` or ``-``, ``integer`` and "
867+ "where the optional ``sign`` may be either ``+`` or ``-``, ``integer`` and "
868868"``fraction`` are strings of hexadecimal digits, and ``exponent`` is a "
869869"decimal integer with an optional leading sign. Case is not significant, and "
870870"there must be at least one hexadecimal digit in either the integer or the "
@@ -1553,8 +1553,8 @@ msgid ""
15531553msgstr ""
15541554
15551555msgid ""
1556- "Retrieve the item at *index* and also removes it from *sequence*. By "
1557- "default, the last item in *sequence* is removed and returned."
1556+ "Retrieve the item at *index* and also remove it from *sequence*. By default, "
1557+ "the last item in *sequence* is removed and returned."
15581558msgstr ""
15591559
15601560msgid "Remove the first item from *sequence* where ``sequence[i] == value``."
@@ -2571,8 +2571,8 @@ msgid ""
25712571"those characters defined in the Unicode character database as \" Letter\" , i."
25722572"e., those with general category property being one of \" Lm\" , \" Lt\" , "
25732573"\" Lu\" , \" Ll\" , or \" Lo\" . Note that this is different from the `Alphabetic "
2574- "property defined in the section 4.10 'Letters, Alphabetic, and Ideographic' "
2575- "of the Unicode Standard <https://www.unicode.org/versions/Unicode17.0.0/core-"
2574+ "property defined in section 4.10 'Letters, Alphabetic, and Ideographic' of "
2575+ "the Unicode Standard <https://www.unicode.org/versions/Unicode17.0.0/core-"
25762576"spec/chapter-4/#G91002>`__. For example:"
25772577msgstr ""
25782578
@@ -3598,7 +3598,7 @@ msgid ""
35983598"'0.333333'\n"
35993599">>> f'{one_third:_^+10}'\n"
36003600"'___+1/3___'\n"
3601- ">>> >>> f'{one_third!r:_^20}'\n"
3601+ ">>> f'{one_third!r:_^20}'\n"
36023602"'___Fraction(1, 3)___'\n"
36033603">>> f'{one_third = :~>10}~'\n"
36043604"'one_third = ~~~~~~~1/3~'"
@@ -3608,13 +3608,13 @@ msgid "Template String Literals (t-strings)"
36083608msgstr ""
36093609
36103610msgid ""
3611- "An :dfn:`t-string` (formally a :dfn:`template string literal`) is a string "
3611+ "A :dfn:`t-string` (formally a :dfn:`template string literal`) is a string "
36123612"literal that is prefixed with ``t`` or ``T``."
36133613msgstr ""
36143614
36153615msgid ""
36163616"These strings follow the same syntax and evaluation rules as :ref:`formatted "
3617- "string literals <stdtypes-fstrings>`, with for the following differences:"
3617+ "string literals <stdtypes-fstrings>`, with the following differences:"
36183618msgstr ""
36193619
36203620msgid ""
@@ -3646,7 +3646,7 @@ msgid ""
36463646"whitespace. The :class:`!Interpolation` instance for the expression will be "
36473647"created as normal, except that :attr:`~string.templatelib.Interpolation."
36483648"conversion` will be set to '``r``' (:func:`repr`) by default. If an explicit "
3649- "conversion or format specifier are provided, this will override the default "
3649+ "conversion or format specifier is provided, this will override the default "
36503650"behaviour."
36513651msgstr ""
36523652
@@ -4128,8 +4128,8 @@ msgid ""
41284128msgstr ""
41294129
41304130msgid ""
4131- "This :class:`bytearray` class method returns bytearray object, decoding the "
4132- "given string object. The string must contain two hexadecimal digits per "
4131+ "This :class:`bytearray` class method returns a bytearray object, decoding "
4132+ "the given string object. The string must contain two hexadecimal digits per "
41334133"byte, with ASCII whitespace being ignored."
41344134msgstr ""
41354135
@@ -4972,7 +4972,7 @@ msgid ""
49724972"*interpolation* operator. Given ``format % values`` (where *format* is a "
49734973"bytes object), ``%`` conversion specifications in *format* are replaced with "
49744974"zero or more elements of *values*. The effect is similar to using the :c:"
4975- "func:`sprintf` in the C language."
4975+ "func:`sprintf` function in the C language."
49764976msgstr ""
49774977
49784978msgid ""
@@ -5059,7 +5059,7 @@ msgstr ""
50595059
50605060msgid ""
50615061"``len(view)`` is equal to the length of :meth:`~memoryview.tolist`, which is "
5062- "the nested list representation of the view. If ``view.ndim = 1``, this is "
5062+ "the nested list representation of the view. If ``view.ndim == 1``, this is "
50635063"equal to the number of elements in the view."
50645064msgstr ""
50655065
@@ -5167,7 +5167,7 @@ msgid ""
51675167"Sequence`"
51685168msgstr ""
51695169
5170- msgid "memoryviews can now be indexed with tuple of integers."
5170+ msgid "memoryviews can now be indexed with a tuple of integers."
51715171msgstr ""
51725172
51735173msgid "memoryview is now a :term:`generic type`."
@@ -6878,7 +6878,7 @@ msgid ""
68786878msgstr ""
68796879
68806880msgid ""
6881- "The ``|`` operand cannot be used at runtime to define unions where one or "
6881+ "The ``|`` operator cannot be used at runtime to define unions where one or "
68826882"more members is a forward reference. For example, ``int | \" Foo\" ``, where "
68836883"``\" Foo\" `` is a reference to a class not yet defined, will fail at runtime. "
68846884"For unions which include forward references, present the whole expression as "
@@ -7058,7 +7058,7 @@ msgstr ""
70587058msgid ""
70597059"Methods are functions that are called using the attribute notation. There "
70607060"are two flavors: :ref:`built-in methods <builtin-methods>` (such as :meth:"
7061- "`~list.append` on lists) and :ref:`class instance method <instance-"
7061+ "`~list.append` on lists) and :ref:`class instance methods <instance-"
70627062"methods>`. Built-in methods are described with the types that support them."
70637063msgstr ""
70647064
0 commit comments