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