@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version : Python 3.13\n "
1313"Report-Msgid-Bugs-To : \n "
14- "POT-Creation-Date : 2025-11-01 14:58 +0000\n "
14+ "POT-Creation-Date : 2025-11-13 15:03 +0000\n "
1515"PO-Revision-Date : 2025-09-15 01:03+0000\n "
1616"Last-Translator : python-doc bot, 2025\n "
1717"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
@@ -270,6 +270,49 @@ msgid ""
270270"``NULL``, :exc:`MemoryError` is set, and ``-1`` is returned."
271271msgstr ""
272272
273+ msgid ""
274+ "Get the string representation of *bytes*. This function is currently used to "
275+ "implement :meth:`!bytes.__repr__` in Python."
276+ msgstr ""
277+
278+ msgid ""
279+ "This function does not do type checking; it is undefined behavior to pass "
280+ "*bytes* as a non-bytes object or ``NULL``."
281+ msgstr ""
282+
283+ msgid ""
284+ "If *smartquotes* is true, the representation will use a double-quoted string "
285+ "instead of single-quoted string when single-quotes are present in *bytes*. "
286+ "For example, the byte string ``'Python'`` would be represented as "
287+ "``b\" 'Python'\" `` when *smartquotes* is true, or ``b'\\ 'Python\\ ''`` when it "
288+ "is false."
289+ msgstr ""
290+
291+ msgid ""
292+ "On success, this function returns a :term:`strong reference` to a :class:"
293+ "`str` object containing the representation. On failure, this returns "
294+ "``NULL`` with an exception set."
295+ msgstr ""
296+
297+ msgid ""
298+ "Unescape a backslash-escaped string *s*. *s* must not be ``NULL``. *len* "
299+ "must be the size of *s*."
300+ msgstr ""
301+
302+ msgid ""
303+ "*errors* must be one of ``\" strict\" ``, ``\" replace\" ``, or ``\" ignore\" ``. "
304+ "If *errors* is ``NULL``, then ``\" strict\" `` is used by default."
305+ msgstr ""
306+
307+ msgid ""
308+ "On success, this function returns a :term:`strong reference` to a Python :"
309+ "class:`bytes` object containing the unescaped string. On failure, this "
310+ "function returns ``NULL`` with an exception set."
311+ msgstr ""
312+
313+ msgid "*unicode* and *recode_encoding* are now unused."
314+ msgstr ""
315+
273316msgid "object"
274317msgstr "obiekt"
275318
0 commit comments