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

Skip to content

Commit 1f7594f

Browse files
Get changes from CPython Doc for 3.12
1 parent 2cc6aaa commit 1f7594f

31 files changed

+1538
-1472
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 := b4dd31409cf6f23dcd8113d10f74a2e41b8cb1ed
22+
CPYTHON_CURRENT_COMMIT := 5f63b73d5216c785a3bddc4892ba3463ea6ec62b
2323
LANGUAGE := tr
2424
BRANCH := 3.12
2525

c-api/hash.po

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.12\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2024-02-24 17:22+0000\n"
11+
"POT-Creation-Date: 2024-03-01 00:16+0000\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1414
"Language-Team: LANGUAGE <[email protected]>\n"
15+
"Language: \n"
1516
"MIME-Version: 1.0\n"
1617
"Content-Type: text/plain; charset=UTF-8\n"
1718
"Content-Transfer-Encoding: 8bit\n"

howto/gdb_helpers.po

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.12\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2024-02-24 17:22+0000\n"
11+
"POT-Creation-Date: 2024-03-01 00:16+0000\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1414
"Language-Team: LANGUAGE <[email protected]>\n"
15+
"Language: \n"
1516
"MIME-Version: 1.0\n"
1617
"Content-Type: text/plain; charset=UTF-8\n"
1718
"Content-Transfer-Encoding: 8bit\n"

library/abc.po

Lines changed: 6 additions & 6 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: 2024-01-01 00:16+0000\n"
10+
"POT-Creation-Date: 2024-03-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"
@@ -119,11 +119,11 @@ msgstr ""
119119

120120
#: library/abc.rst:104
121121
msgid ""
122-
"This method should return ``True``, ``False`` or ``NotImplemented``. If it "
123-
"returns ``True``, the *subclass* is considered a subclass of this ABC. If it "
124-
"returns ``False``, the *subclass* is not considered a subclass of this ABC, "
125-
"even if it would normally be one. If it returns ``NotImplemented``, the "
126-
"subclass check is continued with the usual mechanism."
122+
"This method should return ``True``, ``False`` or :data:`NotImplemented`. If "
123+
"it returns ``True``, the *subclass* is considered a subclass of this ABC. If "
124+
"it returns ``False``, the *subclass* is not considered a subclass of this "
125+
"ABC, even if it would normally be one. If it returns :data:`!"
126+
"NotImplemented`, the subclass check is continued with the usual mechanism."
127127
msgstr ""
128128

129129
#: library/abc.rst:114

library/ast.po

Lines changed: 2 additions & 2 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: 2024-01-01 00:16+0000\n"
10+
"POT-Creation-Date: 2024-03-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"
@@ -1053,7 +1053,7 @@ msgstr ""
10531053

10541054
#: library/ast.rst:2188
10551055
msgid ""
1056-
"If source contains a null character ('\\0'), :exc:`ValueError` is raised."
1056+
"If source contains a null character (``\\0``), :exc:`ValueError` is raised."
10571057
msgstr ""
10581058

10591059
#: library/ast.rst:2191

library/constants.po

Lines changed: 14 additions & 13 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 19:05+0000\n"
10+
"POT-Creation-Date: 2024-03-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"
@@ -52,18 +52,19 @@ msgid ""
5252
"implemented with respect to the other type; may be returned by the in-place "
5353
"binary special methods (e.g. :meth:`~object.__imul__`, :meth:`~object."
5454
"__iand__`, etc.) for the same purpose. It should not be evaluated in a "
55-
"boolean context. ``NotImplemented`` is the sole instance of the :data:`types."
56-
"NotImplementedType` type."
55+
"boolean context. :data:`!NotImplemented` is the sole instance of the :data:"
56+
"`types.NotImplementedType` type."
5757
msgstr ""
5858

5959
#: library/constants.rst:40
6060
msgid ""
61-
"When a binary (or in-place) method returns ``NotImplemented`` the "
61+
"When a binary (or in-place) method returns :data:`!NotImplemented` the "
6262
"interpreter will try the reflected operation on the other type (or some "
63-
"other fallback, depending on the operator). If all attempts return "
64-
"``NotImplemented``, the interpreter will raise an appropriate exception. "
65-
"Incorrectly returning ``NotImplemented`` will result in a misleading error "
66-
"message or the ``NotImplemented`` value being returned to Python code."
63+
"other fallback, depending on the operator). If all attempts return :data:`!"
64+
"NotImplemented`, the interpreter will raise an appropriate exception. "
65+
"Incorrectly returning :data:`!NotImplemented` will result in a misleading "
66+
"error message or the :data:`!NotImplemented` value being returned to Python "
67+
"code."
6768
msgstr ""
6869

6970
#: library/constants.rst:47
@@ -72,15 +73,15 @@ msgstr ""
7273

7374
#: library/constants.rst:51
7475
msgid ""
75-
"``NotImplementedError`` and ``NotImplemented`` are not interchangeable, even "
76-
"though they have similar names and purposes. See :exc:`NotImplementedError` "
77-
"for details on when to use it."
76+
"``NotImplementedError`` and :data:`!NotImplemented` are not interchangeable, "
77+
"even though they have similar names and purposes. See :exc:"
78+
"`NotImplementedError` for details on when to use it."
7879
msgstr ""
7980

8081
#: library/constants.rst:55
8182
msgid ""
82-
"Evaluating ``NotImplemented`` in a boolean context is deprecated. While it "
83-
"currently evaluates as true, it will emit a :exc:`DeprecationWarning`. It "
83+
"Evaluating :data:`!NotImplemented` in a boolean context is deprecated. While "
84+
"it currently evaluates as true, it will emit a :exc:`DeprecationWarning`. It "
8485
"will raise a :exc:`TypeError` in a future version of Python."
8586
msgstr ""
8687

0 commit comments

Comments
 (0)