Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
175 changes: 96 additions & 79 deletions main/locale/pot/LC_MESSAGES/c-api/arg.pot

Large diffs are not rendered by default.

34 changes: 19 additions & 15 deletions main/locale/pot/LC_MESSAGES/c-api/bytes.pot
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.15\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-01-05 09:10+0000\n"
"POT-Creation-Date: 2026-03-16 09:11+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
Expand Down Expand Up @@ -452,11 +452,11 @@ msgid ""
"func:`PyBytesWriter_GetData`. This function does not overallocate."
msgstr ""

#: ../../../c-api/bytes.rst:300 ../../../c-api/bytes.rst:421
#: ../../../c-api/bytes.rst:300 ../../../c-api/bytes.rst:425
msgid "On error, set an exception and return ``NULL``."
msgstr ""

#: ../../../c-api/bytes.rst:302 ../../../c-api/bytes.rst:397
#: ../../../c-api/bytes.rst:302 ../../../c-api/bytes.rst:401
msgid "*size* must be positive or zero."
msgstr ""

Expand Down Expand Up @@ -495,7 +495,7 @@ msgid ""
"internal buffer bounds."
msgstr ""

#: ../../../c-api/bytes.rst:328 ../../../c-api/bytes.rst:425
#: ../../../c-api/bytes.rst:328 ../../../c-api/bytes.rst:429
msgid "Function pseudo-code::"
msgstr ""

Expand Down Expand Up @@ -531,7 +531,7 @@ msgid ""
msgstr ""

#: ../../../c-api/bytes.rst:354 ../../../c-api/bytes.rst:363
#: ../../../c-api/bytes.rst:394 ../../../c-api/bytes.rst:407
#: ../../../c-api/bytes.rst:398 ../../../c-api/bytes.rst:411
msgid "On success, return ``0``. On error, set an exception and return ``-1``."
msgstr ""

Expand All @@ -550,54 +550,58 @@ msgstr ""
msgid "Get the writer size."
msgstr ""

#: ../../../c-api/bytes.rst:376
msgid "Get the writer data: start of the internal buffer."
#: ../../../c-api/bytes.rst:374 ../../../c-api/bytes.rst:383
msgid "The function cannot fail."
msgstr ""

#: ../../../c-api/bytes.rst:378
msgid "Get the writer data: start of the internal buffer."
msgstr ""

#: ../../../c-api/bytes.rst:380
msgid ""
"The pointer is valid until :c:func:`PyBytesWriter_Finish` or :c:func:"
"`PyBytesWriter_Discard` is called on *writer*."
msgstr ""

#: ../../../c-api/bytes.rst:383
#: ../../../c-api/bytes.rst:387
msgid "Low-level API"
msgstr ""

#: ../../../c-api/bytes.rst:387
#: ../../../c-api/bytes.rst:391
msgid ""
"Resize the writer to *size* bytes. It can be used to enlarge or to shrink "
"the writer. This function typically overallocates to achieve amortized "
"performance when resizing multiple times."
msgstr ""

#: ../../../c-api/bytes.rst:392 ../../../c-api/bytes.rst:405
#: ../../../c-api/bytes.rst:396 ../../../c-api/bytes.rst:409
msgid "Newly allocated bytes are left uninitialized."
msgstr ""

#: ../../../c-api/bytes.rst:401
#: ../../../c-api/bytes.rst:405
msgid ""
"Resize the writer by adding *grow* bytes to the current writer size. This "
"function typically overallocates to achieve amortized performance when "
"resizing multiple times."
msgstr ""

#: ../../../c-api/bytes.rst:410
#: ../../../c-api/bytes.rst:414
msgid "*size* can be negative to shrink the writer."
msgstr ""

#: ../../../c-api/bytes.rst:414
#: ../../../c-api/bytes.rst:418
msgid ""
"Similar to :c:func:`PyBytesWriter_Grow`, but update also the *buf* pointer."
msgstr ""

#: ../../../c-api/bytes.rst:417
#: ../../../c-api/bytes.rst:421
msgid ""
"The *buf* pointer is moved if the internal buffer is moved in memory. The "
"*buf* relative position within the internal buffer is left unchanged."
msgstr ""

#: ../../../c-api/bytes.rst:423
#: ../../../c-api/bytes.rst:427
msgid "*buf* must not be ``NULL``."
msgstr ""

Expand Down
Loading