Skip to content

Commit 7ac3b26

Browse files
Get changes from CPython Doc for 3.12
1 parent d196f92 commit 7ac3b26

9 files changed

+2532
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,176 @@
1+
# SOME DESCRIPTIVE TITLE.
2+
# Copyright (C) 2001-2024, Python Software Foundation
3+
# This file is distributed under the same license as the Python package.
4+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5+
#
6+
#, fuzzy
7+
msgid ""
8+
msgstr ""
9+
"Project-Id-Version: Python 3.12\n"
10+
"Report-Msgid-Bugs-To: \n"
11+
"POT-Creation-Date: 2024-08-01 00:19+0000\n"
12+
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14+
"Language-Team: LANGUAGE <[email protected]>\n"
15+
"MIME-Version: 1.0\n"
16+
"Content-Type: text/plain; charset=UTF-8\n"
17+
"Content-Transfer-Encoding: 8bit\n"
18+
19+
#: deprecations/c-api-pending-removal-in-3.14.rst:2
20+
msgid "Pending Removal in Python 3.14"
21+
msgstr ""
22+
23+
#: deprecations/c-api-pending-removal-in-3.14.rst:4
24+
msgid ""
25+
"The ``ma_version_tag`` field in :c:type:`PyDictObject` for extension modules "
26+
"(:pep:`699`; :gh:`101193`)."
27+
msgstr ""
28+
29+
#: deprecations/c-api-pending-removal-in-3.14.rst:7
30+
msgid ""
31+
"Creating :c:data:`immutable types <Py_TPFLAGS_IMMUTABLETYPE>` with mutable "
32+
"bases (:gh:`95388`)."
33+
msgstr ""
34+
35+
#: deprecations/c-api-pending-removal-in-3.14.rst:10
36+
msgid ""
37+
"Functions to configure Python's initialization, deprecated in Python 3.11:"
38+
msgstr ""
39+
40+
#: deprecations/c-api-pending-removal-in-3.14.rst:12
41+
msgid "``PySys_SetArgvEx()``: set :c:member:`PyConfig.argv` instead."
42+
msgstr ""
43+
44+
#: deprecations/c-api-pending-removal-in-3.14.rst:13
45+
msgid "``PySys_SetArgv()``: set :c:member:`PyConfig.argv` instead."
46+
msgstr ""
47+
48+
#: deprecations/c-api-pending-removal-in-3.14.rst:14
49+
msgid "``Py_SetProgramName()``: set :c:member:`PyConfig.program_name` instead."
50+
msgstr ""
51+
52+
#: deprecations/c-api-pending-removal-in-3.14.rst:15
53+
msgid "``Py_SetPythonHome()``: set :c:member:`PyConfig.home` instead."
54+
msgstr ""
55+
56+
#: deprecations/c-api-pending-removal-in-3.14.rst:17
57+
#: deprecations/c-api-pending-removal-in-3.14.rst:45
58+
msgid ""
59+
"The :c:func:`Py_InitializeFromConfig` API should be used with :c:type:"
60+
"`PyConfig` instead."
61+
msgstr ""
62+
63+
#: deprecations/c-api-pending-removal-in-3.14.rst:20
64+
msgid "Global configuration variables:"
65+
msgstr ""
66+
67+
#: deprecations/c-api-pending-removal-in-3.14.rst:22
68+
msgid ":c:var:`Py_DebugFlag`: use :c:member:`PyConfig.parser_debug` instead."
69+
msgstr ""
70+
71+
#: deprecations/c-api-pending-removal-in-3.14.rst:23
72+
msgid ":c:var:`Py_VerboseFlag`: use :c:member:`PyConfig.verbose` instead."
73+
msgstr ""
74+
75+
#: deprecations/c-api-pending-removal-in-3.14.rst:24
76+
msgid ":c:var:`Py_QuietFlag`: use :c:member:`PyConfig.quiet` instead."
77+
msgstr ""
78+
79+
#: deprecations/c-api-pending-removal-in-3.14.rst:25
80+
msgid ""
81+
":c:var:`Py_InteractiveFlag`: use :c:member:`PyConfig.interactive` instead."
82+
msgstr ""
83+
84+
#: deprecations/c-api-pending-removal-in-3.14.rst:26
85+
msgid ":c:var:`Py_InspectFlag`: use :c:member:`PyConfig.inspect` instead."
86+
msgstr ""
87+
88+
#: deprecations/c-api-pending-removal-in-3.14.rst:27
89+
msgid ""
90+
":c:var:`Py_OptimizeFlag`: use :c:member:`PyConfig.optimization_level` "
91+
"instead."
92+
msgstr ""
93+
94+
#: deprecations/c-api-pending-removal-in-3.14.rst:28
95+
msgid ":c:var:`Py_NoSiteFlag`: use :c:member:`PyConfig.site_import` instead."
96+
msgstr ""
97+
98+
#: deprecations/c-api-pending-removal-in-3.14.rst:29
99+
msgid ""
100+
":c:var:`Py_BytesWarningFlag`: use :c:member:`PyConfig.bytes_warning` instead."
101+
msgstr ""
102+
103+
#: deprecations/c-api-pending-removal-in-3.14.rst:30
104+
msgid ""
105+
":c:var:`Py_FrozenFlag`: use :c:member:`PyConfig.pathconfig_warnings` instead."
106+
msgstr ""
107+
108+
#: deprecations/c-api-pending-removal-in-3.14.rst:31
109+
msgid ""
110+
":c:var:`Py_IgnoreEnvironmentFlag`: use :c:member:`PyConfig.use_environment` "
111+
"instead."
112+
msgstr ""
113+
114+
#: deprecations/c-api-pending-removal-in-3.14.rst:32
115+
msgid ""
116+
":c:var:`Py_DontWriteBytecodeFlag`: use :c:member:`PyConfig.write_bytecode` "
117+
"instead."
118+
msgstr ""
119+
120+
#: deprecations/c-api-pending-removal-in-3.14.rst:33
121+
msgid ""
122+
":c:var:`Py_NoUserSiteDirectory`: use :c:member:`PyConfig."
123+
"user_site_directory` instead."
124+
msgstr ""
125+
126+
#: deprecations/c-api-pending-removal-in-3.14.rst:34
127+
msgid ""
128+
":c:var:`Py_UnbufferedStdioFlag`: use :c:member:`PyConfig.buffered_stdio` "
129+
"instead."
130+
msgstr ""
131+
132+
#: deprecations/c-api-pending-removal-in-3.14.rst:35
133+
msgid ""
134+
":c:var:`Py_HashRandomizationFlag`: use :c:member:`PyConfig.use_hash_seed` "
135+
"and :c:member:`PyConfig.hash_seed` instead."
136+
msgstr ""
137+
138+
#: deprecations/c-api-pending-removal-in-3.14.rst:37
139+
msgid ":c:var:`Py_IsolatedFlag`: use :c:member:`PyConfig.isolated` instead."
140+
msgstr ""
141+
142+
#: deprecations/c-api-pending-removal-in-3.14.rst:38
143+
msgid ""
144+
":c:var:`Py_LegacyWindowsFSEncodingFlag`: use :c:member:`PyPreConfig."
145+
"legacy_windows_fs_encoding` instead."
146+
msgstr ""
147+
148+
#: deprecations/c-api-pending-removal-in-3.14.rst:39
149+
msgid ""
150+
":c:var:`Py_LegacyWindowsStdioFlag`: use :c:member:`PyConfig."
151+
"legacy_windows_stdio` instead."
152+
msgstr ""
153+
154+
#: deprecations/c-api-pending-removal-in-3.14.rst:40
155+
msgid ""
156+
":c:var:`!Py_FileSystemDefaultEncoding`: use :c:member:`PyConfig."
157+
"filesystem_encoding` instead."
158+
msgstr ""
159+
160+
#: deprecations/c-api-pending-removal-in-3.14.rst:41
161+
msgid ""
162+
":c:var:`!Py_HasFileSystemDefaultEncoding`: use :c:member:`PyConfig."
163+
"filesystem_encoding` instead."
164+
msgstr ""
165+
166+
#: deprecations/c-api-pending-removal-in-3.14.rst:42
167+
msgid ""
168+
":c:var:`!Py_FileSystemDefaultEncodeErrors`: use :c:member:`PyConfig."
169+
"filesystem_errors` instead."
170+
msgstr ""
171+
172+
#: deprecations/c-api-pending-removal-in-3.14.rst:43
173+
msgid ""
174+
":c:var:`!Py_UTF8Mode`: use :c:member:`PyPreConfig.utf8_mode` instead. (see :"
175+
"c:func:`Py_PreInitialize`)"
176+
msgstr ""
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
# SOME DESCRIPTIVE TITLE.
2+
# Copyright (C) 2001-2024, Python Software Foundation
3+
# This file is distributed under the same license as the Python package.
4+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5+
#
6+
#, fuzzy
7+
msgid ""
8+
msgstr ""
9+
"Project-Id-Version: Python 3.12\n"
10+
"Report-Msgid-Bugs-To: \n"
11+
"POT-Creation-Date: 2024-08-01 00:19+0000\n"
12+
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14+
"Language-Team: LANGUAGE <[email protected]>\n"
15+
"MIME-Version: 1.0\n"
16+
"Content-Type: text/plain; charset=UTF-8\n"
17+
"Content-Transfer-Encoding: 8bit\n"
18+
19+
#: deprecations/c-api-pending-removal-in-3.15.rst:2
20+
msgid "Pending Removal in Python 3.15"
21+
msgstr ""
22+
23+
#: deprecations/c-api-pending-removal-in-3.15.rst:4
24+
msgid "The bundled copy of ``libmpdecimal``."
25+
msgstr ""
26+
27+
#: deprecations/c-api-pending-removal-in-3.15.rst:5
28+
msgid ""
29+
":c:func:`PyImport_ImportModuleNoBlock`: use :c:func:`PyImport_ImportModule` "
30+
"instead."
31+
msgstr ""
32+
33+
#: deprecations/c-api-pending-removal-in-3.15.rst:6
34+
msgid ""
35+
":c:func:`PyWeakref_GET_OBJECT`: use :c:func:`!PyWeakref_GetRef` instead."
36+
msgstr ""
37+
38+
#: deprecations/c-api-pending-removal-in-3.15.rst:7
39+
msgid ":c:func:`PyWeakref_GetObject`: use :c:func:`!PyWeakref_GetRef` instead."
40+
msgstr ""
41+
42+
#: deprecations/c-api-pending-removal-in-3.15.rst:8
43+
msgid ":c:type:`!Py_UNICODE_WIDE` type: use :c:type:`wchar_t` instead."
44+
msgstr ""
45+
46+
#: deprecations/c-api-pending-removal-in-3.15.rst:9
47+
msgid ":c:type:`Py_UNICODE` type: use :c:type:`wchar_t` instead."
48+
msgstr ""
49+
50+
#: deprecations/c-api-pending-removal-in-3.15.rst:10
51+
msgid "Python initialization functions:"
52+
msgstr ""
53+
54+
#: deprecations/c-api-pending-removal-in-3.15.rst:12
55+
msgid ""
56+
":c:func:`PySys_ResetWarnOptions`: clear :data:`sys.warnoptions` and :data:`!"
57+
"warnings.filters` instead."
58+
msgstr ""
59+
60+
#: deprecations/c-api-pending-removal-in-3.15.rst:14
61+
msgid ":c:func:`Py_GetExecPrefix`: get :data:`sys.exec_prefix` instead."
62+
msgstr ""
63+
64+
#: deprecations/c-api-pending-removal-in-3.15.rst:15
65+
msgid ":c:func:`Py_GetPath`: get :data:`sys.path` instead."
66+
msgstr ""
67+
68+
#: deprecations/c-api-pending-removal-in-3.15.rst:16
69+
msgid ":c:func:`Py_GetPrefix`: get :data:`sys.prefix` instead."
70+
msgstr ""
71+
72+
#: deprecations/c-api-pending-removal-in-3.15.rst:17
73+
msgid ":c:func:`Py_GetProgramFullPath`: get :data:`sys.executable` instead."
74+
msgstr ""
75+
76+
#: deprecations/c-api-pending-removal-in-3.15.rst:18
77+
msgid ":c:func:`Py_GetProgramName`: get :data:`sys.executable` instead."
78+
msgstr ""
79+
80+
#: deprecations/c-api-pending-removal-in-3.15.rst:19
81+
msgid ""
82+
":c:func:`Py_GetPythonHome`: get :c:member:`PyConfig.home` or the :envvar:"
83+
"`PYTHONHOME` environment variable instead."
84+
msgstr ""

0 commit comments

Comments
 (0)