@@ -12,7 +12,7 @@ msgid ""
1212msgstr ""
1313"Project-Id-Version : Python 3.15\n "
1414"Report-Msgid-Bugs-To : \n "
15- "POT-Creation-Date : 2026-08-05 15:56 +0000\n "
15+ "POT-Creation-Date : 2026-08-17 14:20 +0000\n "
1616"PO-Revision-Date : 2025-09-16 00:01+0000\n "
1717"Last-Translator : python-doc bot, 2025\n "
1818"Language-Team : Indonesian (https://app.transifex.com/python-doc/teams/5390/ "
@@ -883,7 +883,7 @@ msgid "[sign] ['0x'] integer ['.' fraction] ['p' exponent]"
883883msgstr ""
884884
885885msgid ""
886- "where the optional ``sign`` may by either ``+`` or ``-``, ``integer`` and "
886+ "where the optional ``sign`` may be either ``+`` or ``-``, ``integer`` and "
887887"``fraction`` are strings of hexadecimal digits, and ``exponent`` is a "
888888"decimal integer with an optional leading sign. Case is not significant, and "
889889"there must be at least one hexadecimal digit in either the integer or the "
@@ -1566,8 +1566,8 @@ msgid ""
15661566msgstr ""
15671567
15681568msgid ""
1569- "Retrieve the item at *index* and also removes it from *sequence*. By "
1570- "default, the last item in *sequence* is removed and returned."
1569+ "Retrieve the item at *index* and also remove it from *sequence*. By default, "
1570+ "the last item in *sequence* is removed and returned."
15711571msgstr ""
15721572
15731573msgid "Remove the first item from *sequence* where ``sequence[i] == value``."
@@ -2576,8 +2576,8 @@ msgid ""
25762576"those characters defined in the Unicode character database as \" Letter\" , i."
25772577"e., those with general category property being one of \" Lm\" , \" Lt\" , "
25782578"\" Lu\" , \" Ll\" , or \" Lo\" . Note that this is different from the `Alphabetic "
2579- "property defined in the section 4.10 'Letters, Alphabetic, and Ideographic' "
2580- "of the Unicode Standard <https://www.unicode.org/versions/Unicode17.0.0/core-"
2579+ "property defined in section 4.10 'Letters, Alphabetic, and Ideographic' of "
2580+ "the Unicode Standard <https://www.unicode.org/versions/Unicode17.0.0/core-"
25812581"spec/chapter-4/#G91002>`__. For example:"
25822582msgstr ""
25832583
@@ -3559,7 +3559,7 @@ msgid ""
35593559"'0.333333'\n"
35603560">>> f'{one_third:_^+10}'\n"
35613561"'___+1/3___'\n"
3562- ">>> >>> f'{one_third!r:_^20}'\n"
3562+ ">>> f'{one_third!r:_^20}'\n"
35633563"'___Fraction(1, 3)___'\n"
35643564">>> f'{one_third = :~>10}~'\n"
35653565"'one_third = ~~~~~~~1/3~'"
@@ -3569,13 +3569,13 @@ msgid "Template String Literals (t-strings)"
35693569msgstr ""
35703570
35713571msgid ""
3572- "An :dfn:`t-string` (formally a :dfn:`template string literal`) is a string "
3572+ "A :dfn:`t-string` (formally a :dfn:`template string literal`) is a string "
35733573"literal that is prefixed with ``t`` or ``T``."
35743574msgstr ""
35753575
35763576msgid ""
35773577"These strings follow the same syntax and evaluation rules as :ref:`formatted "
3578- "string literals <stdtypes-fstrings>`, with for the following differences:"
3578+ "string literals <stdtypes-fstrings>`, with the following differences:"
35793579msgstr ""
35803580
35813581msgid ""
@@ -3607,7 +3607,7 @@ msgid ""
36073607"whitespace. The :class:`!Interpolation` instance for the expression will be "
36083608"created as normal, except that :attr:`~string.templatelib.Interpolation."
36093609"conversion` will be set to '``r``' (:func:`repr`) by default. If an explicit "
3610- "conversion or format specifier are provided, this will override the default "
3610+ "conversion or format specifier is provided, this will override the default "
36113611"behaviour."
36123612msgstr ""
36133613
@@ -4089,8 +4089,8 @@ msgid ""
40894089msgstr ""
40904090
40914091msgid ""
4092- "This :class:`bytearray` class method returns bytearray object, decoding the "
4093- "given string object. The string must contain two hexadecimal digits per "
4092+ "This :class:`bytearray` class method returns a bytearray object, decoding "
4093+ "the given string object. The string must contain two hexadecimal digits per "
40944094"byte, with ASCII whitespace being ignored."
40954095msgstr ""
40964096
@@ -4861,7 +4861,7 @@ msgid ""
48614861"*interpolation* operator. Given ``format % values`` (where *format* is a "
48624862"bytes object), ``%`` conversion specifications in *format* are replaced with "
48634863"zero or more elements of *values*. The effect is similar to using the :c:"
4864- "func:`sprintf` in the C language."
4864+ "func:`sprintf` function in the C language."
48654865msgstr ""
48664866
48674867msgid ""
@@ -4948,7 +4948,7 @@ msgstr ""
49484948
49494949msgid ""
49504950"``len(view)`` is equal to the length of :meth:`~memoryview.tolist`, which is "
4951- "the nested list representation of the view. If ``view.ndim = 1``, this is "
4951+ "the nested list representation of the view. If ``view.ndim == 1``, this is "
49524952"equal to the number of elements in the view."
49534953msgstr ""
49544954
@@ -5056,7 +5056,7 @@ msgid ""
50565056"Sequence`"
50575057msgstr ""
50585058
5059- msgid "memoryviews can now be indexed with tuple of integers."
5059+ msgid "memoryviews can now be indexed with a tuple of integers."
50605060msgstr ""
50615061
50625062msgid "memoryview is now a :term:`generic type`."
@@ -6735,7 +6735,7 @@ msgid ""
67356735msgstr ""
67366736
67376737msgid ""
6738- "The ``|`` operand cannot be used at runtime to define unions where one or "
6738+ "The ``|`` operator cannot be used at runtime to define unions where one or "
67396739"more members is a forward reference. For example, ``int | \" Foo\" ``, where "
67406740"``\" Foo\" `` is a reference to a class not yet defined, will fail at runtime. "
67416741"For unions which include forward references, present the whole expression as "
@@ -6913,7 +6913,7 @@ msgstr "Metode-Metode"
69136913msgid ""
69146914"Methods are functions that are called using the attribute notation. There "
69156915"are two flavors: :ref:`built-in methods <builtin-methods>` (such as :meth:"
6916- "`~list.append` on lists) and :ref:`class instance method <instance-"
6916+ "`~list.append` on lists) and :ref:`class instance methods <instance-"
69176917"methods>`. Built-in methods are described with the types that support them."
69186918msgstr ""
69196919
0 commit comments