Skip to content

Commit 725ddd3

Browse files
Get changes from CPython Doc for 3.12
1 parent 33ab759 commit 725ddd3

Some content is hidden

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

45 files changed

+4190
-3969
lines changed

Makefile

+1-1
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 := dc3c075d9eebc82c63ec54bb3f217d67b2aea914
22+
CPYTHON_CURRENT_COMMIT := ea8a85bb9eb54b9edee1a815cff797310ec13f13
2323
LANGUAGE := tr
2424
BRANCH := 3.12
2525

c-api/allocation.po

+10-12
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 19:05+0000\n"
10+
"POT-Creation-Date: 2024-12-01 00:24+0000\n"
1111
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212
"Last-Translator: \n"
1313
"Language-Team: TURKISH <[email protected]>\n"
@@ -23,19 +23,17 @@ msgstr ""
2323
#: c-api/allocation.rst:17
2424
msgid ""
2525
"Initialize a newly allocated object *op* with its type and initial "
26-
"reference. Returns the initialized object. If *type* indicates that the "
27-
"object participates in the cyclic garbage detector, it is added to the "
28-
"detector's set of observed objects. Other fields of the object are not "
29-
"affected."
26+
"reference. Returns the initialized object. Other fields of the object are "
27+
"not affected."
3028
msgstr ""
3129

32-
#: c-api/allocation.rst:26
30+
#: c-api/allocation.rst:24
3331
msgid ""
3432
"This does everything :c:func:`PyObject_Init` does, and also initializes the "
3533
"length information for a variable-size object."
3634
msgstr ""
3735

38-
#: c-api/allocation.rst:32
36+
#: c-api/allocation.rst:30
3937
msgid ""
4038
"Allocate a new Python object using the C structure type *TYPE* and the "
4139
"Python type object *typeobj* (``PyTypeObject*``). Fields not defined by the "
@@ -45,7 +43,7 @@ msgid ""
4543
"tp_basicsize` field of the type object."
4644
msgstr ""
4745

48-
#: c-api/allocation.rst:43
46+
#: c-api/allocation.rst:41
4947
msgid ""
5048
"Allocate a new Python object using the C structure type *TYPE* and the "
5149
"Python type object *typeobj* (``PyTypeObject*``). Fields not defined by the "
@@ -58,7 +56,7 @@ msgid ""
5856
"management efficiency."
5957
msgstr ""
6058

61-
#: c-api/allocation.rst:57
59+
#: c-api/allocation.rst:55
6260
msgid ""
6361
"Releases memory allocated to an object using :c:macro:`PyObject_New` or :c:"
6462
"macro:`PyObject_NewVar`. This is normally called from the :c:member:"
@@ -67,17 +65,17 @@ msgid ""
6765
"no longer a valid Python object."
6866
msgstr ""
6967

70-
#: c-api/allocation.rst:66
68+
#: c-api/allocation.rst:64
7169
msgid ""
7270
"Object which is visible in Python as ``None``. This should only be accessed "
7371
"using the :c:macro:`Py_None` macro, which evaluates to a pointer to this "
7472
"object."
7573
msgstr ""
7674

77-
#: c-api/allocation.rst:73
75+
#: c-api/allocation.rst:71
7876
msgid ":c:func:`PyModule_Create`"
7977
msgstr ""
8078

81-
#: c-api/allocation.rst:74
79+
#: c-api/allocation.rst:72
8280
msgid "To allocate and create extension modules."
8381
msgstr ""

0 commit comments

Comments
 (0)