@@ -23,16 +23,16 @@ msgstr ""
2323
2424#: ../../deprecations/c-api-pending-removal-in-3.15.rst:4
2525msgid ""
26- "The :c:func:`!PyImport_ImportModuleNoBlock`: Use :c:func: "
27- "`PyImport_ImportModule` instead."
26+ "The :c:func:`!PyImport_ImportModuleNoBlock`: "
27+ "Use :c:func: `PyImport_ImportModule` instead."
2828msgstr ""
2929
3030#: ../../deprecations/c-api-pending-removal-in-3.15.rst:6
3131msgid ""
32- ":c:func:`!PyWeakref_GetObject` and :c:func:`!PyWeakref_GET_OBJECT`: Use :c: "
33- "func:`PyWeakref_GetRef` instead. The `pythoncapi-compat project <https:// "
34- "github.com/python/pythoncapi-compat/>`__ can be used to get :c:func: "
35- "`PyWeakref_GetRef` on Python 3.12 and older."
32+ ":c:func:`!PyWeakref_GetObject` and :c:func:`!PyWeakref_GET_OBJECT`: "
33+ "Use :c: func:`PyWeakref_GetRef` instead. The `pythoncapi-compat project "
34+ "<https:// github.com/python/pythoncapi-compat/>`__ can be used to "
35+ "get :c:func: `PyWeakref_GetRef` on Python 3.12 and older."
3636msgstr ""
3737
3838#: ../../deprecations/c-api-pending-removal-in-3.15.rst:10
@@ -72,17 +72,18 @@ msgstr ""
7272#: ../../deprecations/c-api-pending-removal-in-3.15.rst:25
7373msgid ""
7474":c:func:`!Py_GetPrefix`: Use :c:func:`PyConfig_Get(\" base_prefix\" ) "
75- "<PyConfig_Get>` (:data:`sys.base_prefix`) instead. Use :c:func: "
76- "`PyConfig_Get(\" prefix\" ) <PyConfig_Get>` (:data:`sys.prefix`) if :ref: "
77- "`virtual environments <venv-def>` need to be handled."
75+ "<PyConfig_Get>` (:data:`sys.base_prefix`) instead. "
76+ "Use :c:func: `PyConfig_Get(\" prefix\" ) <PyConfig_Get>` (:data:`sys.prefix`) "
77+ "if :ref: `virtual environments <venv-def>` need to be handled."
7878msgstr ""
7979
8080#: ../../deprecations/c-api-pending-removal-in-3.15.rst:30
8181msgid ""
8282":c:func:`!Py_GetExecPrefix`: Use :c:func:`PyConfig_Get(\" base_exec_prefix\" ) "
83- "<PyConfig_Get>` (:data:`sys.base_exec_prefix`) instead. Use :c:func:"
84- "`PyConfig_Get(\" exec_prefix\" ) <PyConfig_Get>` (:data:`sys.exec_prefix`) if :"
85- "ref:`virtual environments <venv-def>` need to be handled."
83+ "<PyConfig_Get>` (:data:`sys.base_exec_prefix`) instead. "
84+ "Use :c:func:`PyConfig_Get(\" exec_prefix\" ) <PyConfig_Get>` "
85+ "(:data:`sys.exec_prefix`) if :ref:`virtual environments <venv-def>` need to "
86+ "be handled."
8687msgstr ""
8788
8889#: ../../deprecations/c-api-pending-removal-in-3.15.rst:36
@@ -140,8 +141,8 @@ msgstr ""
140141
141142#: ../../deprecations/c-api-pending-removal-in-3.15.rst:63
142143msgid ""
143- "The :c:func:`Py_InitializeFromConfig` API should be used with :c:type: "
144- "`PyConfig` instead."
144+ "The :c:func:`Py_InitializeFromConfig` API should be used "
145+ "with :c:type: `PyConfig` instead."
145146msgstr ""
146147
147148#: ../../deprecations/c-api-pending-removal-in-3.15.rst:66
@@ -150,56 +151,56 @@ msgstr ""
150151
151152#: ../../deprecations/c-api-pending-removal-in-3.15.rst:68
152153msgid ""
153- ":c:var:`Py_DebugFlag`: Use :c:member:`PyConfig.parser_debug` or :c:func: "
154- "`PyConfig_Get(\" parser_debug\" ) <PyConfig_Get>` instead."
154+ ":c:var:`Py_DebugFlag`: Use :c:member:`PyConfig.parser_debug` "
155+ "or :c:func: `PyConfig_Get(\" parser_debug\" ) <PyConfig_Get>` instead."
155156msgstr ""
156157
157158#: ../../deprecations/c-api-pending-removal-in-3.15.rst:71
158159msgid ""
159- ":c:var:`Py_VerboseFlag`: Use :c:member:`PyConfig.verbose` or :c:func: "
160- "`PyConfig_Get(\" verbose\" ) <PyConfig_Get>` instead."
160+ ":c:var:`Py_VerboseFlag`: Use :c:member:`PyConfig.verbose` "
161+ "or :c:func: `PyConfig_Get(\" verbose\" ) <PyConfig_Get>` instead."
161162msgstr ""
162163
163164#: ../../deprecations/c-api-pending-removal-in-3.15.rst:74
164165msgid ""
165- ":c:var:`Py_QuietFlag`: Use :c:member:`PyConfig.quiet` or :c:func: "
166- "`PyConfig_Get(\" quiet\" ) <PyConfig_Get>` instead."
166+ ":c:var:`Py_QuietFlag`: Use :c:member:`PyConfig.quiet` "
167+ "or :c:func: `PyConfig_Get(\" quiet\" ) <PyConfig_Get>` instead."
167168msgstr ""
168169
169170#: ../../deprecations/c-api-pending-removal-in-3.15.rst:77
170171msgid ""
171- ":c:var:`Py_InteractiveFlag`: Use :c:member:`PyConfig.interactive` or :c:func: "
172- "`PyConfig_Get(\" interactive\" ) <PyConfig_Get>` instead."
172+ ":c:var:`Py_InteractiveFlag`: Use :c:member:`PyConfig.interactive` "
173+ "or :c:func: `PyConfig_Get(\" interactive\" ) <PyConfig_Get>` instead."
173174msgstr ""
174175
175176#: ../../deprecations/c-api-pending-removal-in-3.15.rst:80
176177msgid ""
177- ":c:var:`Py_InspectFlag`: Use :c:member:`PyConfig.inspect` or :c:func: "
178- "`PyConfig_Get(\" inspect\" ) <PyConfig_Get>` instead."
178+ ":c:var:`Py_InspectFlag`: Use :c:member:`PyConfig.inspect` "
179+ "or :c:func: `PyConfig_Get(\" inspect\" ) <PyConfig_Get>` instead."
179180msgstr ""
180181
181182#: ../../deprecations/c-api-pending-removal-in-3.15.rst:83
182183msgid ""
183- ":c:var:`Py_OptimizeFlag`: Use :c:member:`PyConfig.optimization_level` or :c: "
184- "func:`PyConfig_Get(\" optimization_level\" ) <PyConfig_Get>` instead."
184+ ":c:var:`Py_OptimizeFlag`: Use :c:member:`PyConfig.optimization_level` "
185+ "or :c: func:`PyConfig_Get(\" optimization_level\" ) <PyConfig_Get>` instead."
185186msgstr ""
186187
187188#: ../../deprecations/c-api-pending-removal-in-3.15.rst:86
188189msgid ""
189- ":c:var:`Py_NoSiteFlag`: Use :c:member:`PyConfig.site_import` or :c:func: "
190- "`PyConfig_Get(\" site_import\" ) <PyConfig_Get>` instead."
190+ ":c:var:`Py_NoSiteFlag`: Use :c:member:`PyConfig.site_import` "
191+ "or :c:func: `PyConfig_Get(\" site_import\" ) <PyConfig_Get>` instead."
191192msgstr ""
192193
193194#: ../../deprecations/c-api-pending-removal-in-3.15.rst:89
194195msgid ""
195- ":c:var:`Py_BytesWarningFlag`: Use :c:member:`PyConfig.bytes_warning` or :c: "
196- "func:`PyConfig_Get(\" bytes_warning\" ) <PyConfig_Get>` instead."
196+ ":c:var:`Py_BytesWarningFlag`: Use :c:member:`PyConfig.bytes_warning` "
197+ "or :c: func:`PyConfig_Get(\" bytes_warning\" ) <PyConfig_Get>` instead."
197198msgstr ""
198199
199200#: ../../deprecations/c-api-pending-removal-in-3.15.rst:92
200201msgid ""
201- ":c:var:`Py_FrozenFlag`: Use :c:member:`PyConfig.pathconfig_warnings` or :c: "
202- "func:`PyConfig_Get(\" pathconfig_warnings\" ) <PyConfig_Get>` instead."
202+ ":c:var:`Py_FrozenFlag`: Use :c:member:`PyConfig.pathconfig_warnings` "
203+ "or :c: func:`PyConfig_Get(\" pathconfig_warnings\" ) <PyConfig_Get>` instead."
203204msgstr ""
204205
205206#: ../../deprecations/c-api-pending-removal-in-3.15.rst:95
@@ -216,15 +217,15 @@ msgstr ""
216217
217218#: ../../deprecations/c-api-pending-removal-in-3.15.rst:101
218219msgid ""
219- ":c:var:`Py_NoUserSiteDirectory`: Use :c:member:`PyConfig. "
220- "user_site_directory` or :c:func:`PyConfig_Get( \" user_site_directory\" ) "
221- "<PyConfig_Get>` instead."
220+ ":c:var:`Py_NoUserSiteDirectory`: "
221+ "Use :c:member:`PyConfig. user_site_directory` "
222+ "or :c:func:`PyConfig_Get( \" user_site_directory \" ) <PyConfig_Get>` instead."
222223msgstr ""
223224
224225#: ../../deprecations/c-api-pending-removal-in-3.15.rst:104
225226msgid ""
226- ":c:var:`Py_UnbufferedStdioFlag`: Use :c:member:`PyConfig.buffered_stdio` or : "
227- "c:func:`PyConfig_Get(\" buffered_stdio\" ) <PyConfig_Get>` instead."
227+ ":c:var:`Py_UnbufferedStdioFlag`: Use :c:member:`PyConfig.buffered_stdio` "
228+ "or : c:func:`PyConfig_Get(\" buffered_stdio\" ) <PyConfig_Get>` instead."
228229msgstr ""
229230
230231#: ../../deprecations/c-api-pending-removal-in-3.15.rst:107
@@ -236,49 +237,50 @@ msgstr ""
236237
237238#: ../../deprecations/c-api-pending-removal-in-3.15.rst:111
238239msgid ""
239- ":c:var:`Py_IsolatedFlag`: Use :c:member:`PyConfig.isolated` or :c:func: "
240- "`PyConfig_Get(\" isolated\" ) <PyConfig_Get>` instead."
240+ ":c:var:`Py_IsolatedFlag`: Use :c:member:`PyConfig.isolated` "
241+ "or :c:func: `PyConfig_Get(\" isolated\" ) <PyConfig_Get>` instead."
241242msgstr ""
242243
243244#: ../../deprecations/c-api-pending-removal-in-3.15.rst:114
244245msgid ""
245- ":c:var:`Py_LegacyWindowsFSEncodingFlag`: Use :c:member:`PyPreConfig."
246- "legacy_windows_fs_encoding` or :c:func:"
247- "`PyConfig_Get(\" legacy_windows_fs_encoding\" ) <PyConfig_Get>` instead."
246+ ":c:var:`Py_LegacyWindowsFSEncodingFlag`: "
247+ "Use :c:member:`PyPreConfig.legacy_windows_fs_encoding` "
248+ "or :c:func:`PyConfig_Get(\" legacy_windows_fs_encoding\" ) <PyConfig_Get>` "
249+ "instead."
248250msgstr ""
249251
250252#: ../../deprecations/c-api-pending-removal-in-3.15.rst:117
251253msgid ""
252- ":c:var:`Py_LegacyWindowsStdioFlag`: Use :c:member:`PyConfig. "
253- "legacy_windows_stdio` or :c:func:`PyConfig_Get( \" legacy_windows_stdio\" ) "
254- "<PyConfig_Get>` instead."
254+ ":c:var:`Py_LegacyWindowsStdioFlag`: "
255+ "Use :c:member:`PyConfig. legacy_windows_stdio` "
256+ "or :c:func:`PyConfig_Get( \" legacy_windows_stdio \" ) <PyConfig_Get>` instead."
255257msgstr ""
256258
257259#: ../../deprecations/c-api-pending-removal-in-3.15.rst:120
258260msgid ""
259261":c:var:`!Py_FileSystemDefaultEncoding`, :c:var:`!"
260- "Py_HasFileSystemDefaultEncoding`: Use :c:member:`PyConfig. "
261- "filesystem_encoding` or :c:func:`PyConfig_Get( \" filesystem_encoding\" ) "
262- "<PyConfig_Get>` instead."
262+ "Py_HasFileSystemDefaultEncoding`: "
263+ "Use :c:member:`PyConfig. filesystem_encoding` "
264+ "or :c:func:`PyConfig_Get( \" filesystem_encoding \" ) <PyConfig_Get>` instead."
263265msgstr ""
264266
265267#: ../../deprecations/c-api-pending-removal-in-3.15.rst:123
266268msgid ""
267- ":c:var:`!Py_FileSystemDefaultEncodeErrors`: Use :c:member:`PyConfig. "
268- "filesystem_errors` or :c:func:`PyConfig_Get( \" filesystem_errors\" ) "
269- "<PyConfig_Get>` instead."
269+ ":c:var:`!Py_FileSystemDefaultEncodeErrors`: "
270+ "Use :c:member:`PyConfig. filesystem_errors` "
271+ "or :c:func:`PyConfig_Get( \" filesystem_errors \" ) <PyConfig_Get>` instead."
270272msgstr ""
271273
272274#: ../../deprecations/c-api-pending-removal-in-3.15.rst:126
273275msgid ""
274- ":c:var:`!Py_UTF8Mode`: Use :c:member:`PyPreConfig.utf8_mode` or :c:func: "
275- "`PyConfig_Get(\" utf8_mode\" ) <PyConfig_Get>` instead. (see :c:func: "
276- "`Py_PreInitialize`)"
276+ ":c:var:`!Py_UTF8Mode`: Use :c:member:`PyPreConfig.utf8_mode` "
277+ "or :c:func: `PyConfig_Get(\" utf8_mode\" ) <PyConfig_Get>` instead. "
278+ "(see :c:func: `Py_PreInitialize`)"
277279msgstr ""
278280
279281#: ../../deprecations/c-api-pending-removal-in-3.15.rst:131
280282msgid ""
281- "The :c:func:`Py_InitializeFromConfig` API should be used with :c:type: "
282- "`PyConfig` to set these options. Or :c:func:`PyConfig_Get` can be used to "
283- "get these options at runtime."
283+ "The :c:func:`Py_InitializeFromConfig` API should be used "
284+ "with :c:type: `PyConfig` to set these options. Or :c:func:`PyConfig_Get` can "
285+ "be used to get these options at runtime."
284286msgstr ""
0 commit comments