Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e030887

Browse files
Get changes from CPython Doc for 3.12
1 parent d1f9510 commit e030887

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

99 files changed

+12516
-11964
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
# test build, we're building with the .rst files that generated our
2020
# .po files.
2121

22-
CPYTHON_CURRENT_COMMIT := 4f919cf8b9ed07964e8b7b87a5a3e25b09b1ed9e
22+
CPYTHON_CURRENT_COMMIT := f3d3663a47f82de5ddf384ea1497bd3b36d795d7
2323
LANGUAGE := tr
2424
BRANCH := 3.12
2525

c-api/bytes.po

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ msgid ""
77
msgstr ""
88
"Project-Id-Version: Python 3.12\n"
99
"Report-Msgid-Bugs-To: \n"
10-
"POT-Creation-Date: 2023-09-18 22:33+0300\n"
10+
"POT-Creation-Date: 2024-01-01 00:16+0000\n"
1111
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212
"Last-Translator: \n"
1313
"Language-Team: TURKISH <[email protected]>\n"
@@ -269,17 +269,17 @@ msgstr ""
269269
#: c-api/bytes.rst:156
270270
msgid ""
271271
"Return the null-terminated contents of the object *obj* through the output "
272-
"variables *buffer* and *length*."
272+
"variables *buffer* and *length*. Returns ``0`` on success."
273273
msgstr ""
274274

275-
#: c-api/bytes.rst:159
275+
#: c-api/bytes.rst:160
276276
msgid ""
277277
"If *length* is ``NULL``, the bytes object may not contain embedded null "
278278
"bytes; if it does, the function returns ``-1`` and a :exc:`ValueError` is "
279279
"raised."
280280
msgstr ""
281281

282-
#: c-api/bytes.rst:163
282+
#: c-api/bytes.rst:164
283283
msgid ""
284284
"The buffer refers to an internal buffer of *obj*, which includes an "
285285
"additional null byte at the end (not counted in *length*). The data must "
@@ -289,13 +289,13 @@ msgid ""
289289
"returns ``-1`` and raises :exc:`TypeError`."
290290
msgstr ""
291291

292-
#: c-api/bytes.rst:170
292+
#: c-api/bytes.rst:171
293293
msgid ""
294294
"Previously, :exc:`TypeError` was raised when embedded null bytes were "
295295
"encountered in the bytes object."
296296
msgstr ""
297297

298-
#: c-api/bytes.rst:177
298+
#: c-api/bytes.rst:178
299299
msgid ""
300300
"Create a new bytes object in *\\*bytes* containing the contents of *newpart* "
301301
"appended to *bytes*; the caller will own the new reference. The reference "
@@ -304,14 +304,14 @@ msgid ""
304304
"of *\\*bytes* will be set to ``NULL``; the appropriate exception will be set."
305305
msgstr ""
306306

307-
#: c-api/bytes.rst:186
307+
#: c-api/bytes.rst:187
308308
msgid ""
309309
"Create a new bytes object in *\\*bytes* containing the contents of *newpart* "
310310
"appended to *bytes*. This version releases the :term:`strong reference` to "
311311
"*newpart* (i.e. decrements its reference count)."
312312
msgstr ""
313313

314-
#: c-api/bytes.rst:193
314+
#: c-api/bytes.rst:194
315315
msgid ""
316316
"A way to resize a bytes object even though it is \"immutable\". Only use "
317317
"this to build up a brand new bytes object; don't use this if the bytes may "

0 commit comments

Comments
 (0)