@@ -12,7 +12,7 @@ msgid ""
1212msgstr ""
1313"Project-Id-Version : Python 3.14\n "
1414"Report-Msgid-Bugs-To : \n "
15- "POT-Creation-Date : 2025-11-05 14:15+0000\n "
15+ "POT-Creation-Date : 2025-11-13 14:15+0000\n "
1616"PO-Revision-Date : 2025-09-16 00:00+0000\n "
1717"Last-Translator : Hengky Kurniawan, 2025\n "
1818"Language-Team : Indonesian (https://app.transifex.com/python-doc/teams/5390/ "
@@ -289,6 +289,49 @@ msgid ""
289289"``NULL``, :exc:`MemoryError` is set, and ``-1`` is returned."
290290msgstr ""
291291
292+ msgid ""
293+ "Get the string representation of *bytes*. This function is currently used to "
294+ "implement :meth:`!bytes.__repr__` in Python."
295+ msgstr ""
296+
297+ msgid ""
298+ "This function does not do type checking; it is undefined behavior to pass "
299+ "*bytes* as a non-bytes object or ``NULL``."
300+ msgstr ""
301+
302+ msgid ""
303+ "If *smartquotes* is true, the representation will use a double-quoted string "
304+ "instead of single-quoted string when single-quotes are present in *bytes*. "
305+ "For example, the byte string ``'Python'`` would be represented as "
306+ "``b\" 'Python'\" `` when *smartquotes* is true, or ``b'\\ 'Python\\ ''`` when it "
307+ "is false."
308+ msgstr ""
309+
310+ msgid ""
311+ "On success, this function returns a :term:`strong reference` to a :class:"
312+ "`str` object containing the representation. On failure, this returns "
313+ "``NULL`` with an exception set."
314+ msgstr ""
315+
316+ msgid ""
317+ "Unescape a backslash-escaped string *s*. *s* must not be ``NULL``. *len* "
318+ "must be the size of *s*."
319+ msgstr ""
320+
321+ msgid ""
322+ "*errors* must be one of ``\" strict\" ``, ``\" replace\" ``, or ``\" ignore\" ``. "
323+ "If *errors* is ``NULL``, then ``\" strict\" `` is used by default."
324+ msgstr ""
325+
326+ msgid ""
327+ "On success, this function returns a :term:`strong reference` to a Python :"
328+ "class:`bytes` object containing the unescaped string. On failure, this "
329+ "function returns ``NULL`` with an exception set."
330+ msgstr ""
331+
332+ msgid "*unicode* and *recode_encoding* are now unused."
333+ msgstr ""
334+
292335msgid "object"
293336msgstr "objek"
294337
0 commit comments