Skip to content

Commit d4d2877

Browse files
committed
update python-newest.deprecations--pending-removal-in-future/id.po with latest contents from transifex
1 parent 2a1cc5f commit d4d2877

File tree

1 file changed

+389
-0
lines changed
  • python-newest.deprecations--pending-removal-in-future

1 file changed

+389
-0
lines changed
Lines changed: 389 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,389 @@
1+
# SOME DESCRIPTIVE TITLE.
2+
# Copyright (C) 2001 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.14\n"
10+
"Report-Msgid-Bugs-To: \n"
11+
"POT-Creation-Date: 2025-05-09 14:19+0000\n"
12+
"PO-Revision-Date: 2024-07-20 00:54+0000\n"
13+
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/id/)\n"
14+
"MIME-Version: 1.0\n"
15+
"Content-Type: text/plain; charset=UTF-8\n"
16+
"Content-Transfer-Encoding: 8bit\n"
17+
"Language: id\n"
18+
"Plural-Forms: nplurals=1; plural=0;\n"
19+
20+
#: ../../deprecations/pending-removal-in-future.rst:2
21+
msgid "Pending removal in future versions"
22+
msgstr ""
23+
24+
#: ../../deprecations/pending-removal-in-future.rst:4
25+
msgid ""
26+
"The following APIs will be removed in the future, although there is "
27+
"currently no date scheduled for their removal."
28+
msgstr ""
29+
30+
#: ../../deprecations/pending-removal-in-future.rst:7
31+
msgid ":mod:`argparse`:"
32+
msgstr ""
33+
34+
#: ../../deprecations/pending-removal-in-future.rst:9
35+
msgid ""
36+
"Nesting argument groups and nesting mutually exclusive groups are "
37+
"deprecated."
38+
msgstr ""
39+
40+
#: ../../deprecations/pending-removal-in-future.rst:11
41+
msgid ""
42+
"Passing the undocumented keyword argument *prefix_chars* to "
43+
":meth:`~argparse.ArgumentParser.add_argument_group` is now deprecated."
44+
msgstr ""
45+
46+
#: ../../deprecations/pending-removal-in-future.rst:14
47+
msgid "The :class:`argparse.FileType` type converter is deprecated."
48+
msgstr ""
49+
50+
#: ../../deprecations/pending-removal-in-future.rst:16
51+
msgid ":mod:`builtins`:"
52+
msgstr ""
53+
54+
#: ../../deprecations/pending-removal-in-future.rst:18
55+
msgid "``bool(NotImplemented)``."
56+
msgstr ""
57+
58+
#: ../../deprecations/pending-removal-in-future.rst:19
59+
msgid ""
60+
"Generators: ``throw(type, exc, tb)`` and ``athrow(type, exc, tb)`` signature"
61+
" is deprecated: use ``throw(exc)`` and ``athrow(exc)`` instead, the single "
62+
"argument signature."
63+
msgstr ""
64+
65+
#: ../../deprecations/pending-removal-in-future.rst:22
66+
msgid ""
67+
"Currently Python accepts numeric literals immediately followed by keywords, "
68+
"for example ``0in x``, ``1or x``, ``0if 1else 2``. It allows confusing and "
69+
"ambiguous expressions like ``[0x1for x in y]`` (which can be interpreted as "
70+
"``[0x1 for x in y]`` or ``[0x1f or x in y]``). A syntax warning is raised "
71+
"if the numeric literal is immediately followed by one of keywords "
72+
":keyword:`and`, :keyword:`else`, :keyword:`for`, :keyword:`if`, "
73+
":keyword:`in`, :keyword:`is` and :keyword:`or`. In a future release it will"
74+
" be changed to a syntax error. (:gh:`87999`)"
75+
msgstr ""
76+
77+
#: ../../deprecations/pending-removal-in-future.rst:30
78+
msgid ""
79+
"Support for ``__index__()`` and ``__int__()`` method returning non-int type:"
80+
" these methods will be required to return an instance of a strict subclass "
81+
"of :class:`int`."
82+
msgstr ""
83+
84+
#: ../../deprecations/pending-removal-in-future.rst:33
85+
msgid ""
86+
"Support for ``__float__()`` method returning a strict subclass of "
87+
":class:`float`: these methods will be required to return an instance of "
88+
":class:`float`."
89+
msgstr ""
90+
91+
#: ../../deprecations/pending-removal-in-future.rst:36
92+
msgid ""
93+
"Support for ``__complex__()`` method returning a strict subclass of "
94+
":class:`complex`: these methods will be required to return an instance of "
95+
":class:`complex`."
96+
msgstr ""
97+
98+
#: ../../deprecations/pending-removal-in-future.rst:39
99+
msgid "Delegation of ``int()`` to ``__trunc__()`` method."
100+
msgstr ""
101+
102+
#: ../../deprecations/pending-removal-in-future.rst:40
103+
msgid ""
104+
"Passing a complex number as the *real* or *imag* argument in the "
105+
":func:`complex` constructor is now deprecated; it should only be passed as a"
106+
" single positional argument. (Contributed by Serhiy Storchaka in "
107+
":gh:`109218`.)"
108+
msgstr ""
109+
110+
#: ../../deprecations/pending-removal-in-future.rst:45
111+
msgid ""
112+
":mod:`calendar`: ``calendar.January`` and ``calendar.February`` constants "
113+
"are deprecated and replaced by :data:`calendar.JANUARY` and "
114+
":data:`calendar.FEBRUARY`. (Contributed by Prince Roshan in :gh:`103636`.)"
115+
msgstr ""
116+
117+
#: ../../deprecations/pending-removal-in-future.rst:50
118+
msgid ""
119+
":mod:`codecs`: use :func:`open` instead of :func:`codecs.open`. "
120+
"(:gh:`133038`)"
121+
msgstr ""
122+
123+
#: ../../deprecations/pending-removal-in-future.rst:52
124+
msgid ""
125+
":attr:`codeobject.co_lnotab`: use the :meth:`codeobject.co_lines` method "
126+
"instead."
127+
msgstr ""
128+
129+
#: ../../deprecations/pending-removal-in-future.rst:55
130+
msgid ":mod:`datetime`:"
131+
msgstr ""
132+
133+
#: ../../deprecations/pending-removal-in-future.rst:57
134+
msgid ""
135+
":meth:`~datetime.datetime.utcnow`: use "
136+
"``datetime.datetime.now(tz=datetime.UTC)``."
137+
msgstr ""
138+
139+
#: ../../deprecations/pending-removal-in-future.rst:59
140+
msgid ""
141+
":meth:`~datetime.datetime.utcfromtimestamp`: use "
142+
"``datetime.datetime.fromtimestamp(timestamp, tz=datetime.UTC)``."
143+
msgstr ""
144+
145+
#: ../../deprecations/pending-removal-in-future.rst:62
146+
msgid ":mod:`gettext`: Plural value must be an integer."
147+
msgstr ""
148+
149+
#: ../../deprecations/pending-removal-in-future.rst:64
150+
msgid ":mod:`importlib`:"
151+
msgstr ""
152+
153+
#: ../../deprecations/pending-removal-in-future.rst:66
154+
msgid ""
155+
":func:`~importlib.util.cache_from_source` *debug_override* parameter is "
156+
"deprecated: use the *optimization* parameter instead."
157+
msgstr ""
158+
159+
#: ../../deprecations/pending-removal-in-future.rst:69
160+
msgid ":mod:`importlib.metadata`:"
161+
msgstr ""
162+
163+
#: ../../deprecations/pending-removal-in-future.rst:71
164+
msgid "``EntryPoints`` tuple interface."
165+
msgstr ""
166+
167+
#: ../../deprecations/pending-removal-in-future.rst:72
168+
msgid "Implicit ``None`` on return values."
169+
msgstr ""
170+
171+
#: ../../deprecations/pending-removal-in-future.rst:74
172+
msgid ""
173+
":mod:`logging`: the ``warn()`` method has been deprecated since Python 3.3, "
174+
"use :meth:`~logging.warning` instead."
175+
msgstr ""
176+
177+
#: ../../deprecations/pending-removal-in-future.rst:77
178+
msgid ""
179+
":mod:`mailbox`: Use of StringIO input and text mode is deprecated, use "
180+
"BytesIO and binary mode instead."
181+
msgstr ""
182+
183+
#: ../../deprecations/pending-removal-in-future.rst:80
184+
msgid ""
185+
":mod:`os`: Calling :func:`os.register_at_fork` in multi-threaded process."
186+
msgstr ""
187+
188+
#: ../../deprecations/pending-removal-in-future.rst:82
189+
msgid ""
190+
":class:`!pydoc.ErrorDuringImport`: A tuple value for *exc_info* parameter is"
191+
" deprecated, use an exception instance."
192+
msgstr ""
193+
194+
#: ../../deprecations/pending-removal-in-future.rst:85
195+
msgid ""
196+
":mod:`re`: More strict rules are now applied for numerical group references "
197+
"and group names in regular expressions. Only sequence of ASCII digits is "
198+
"now accepted as a numerical reference. The group name in bytes patterns and"
199+
" replacement strings can now only contain ASCII letters and digits and "
200+
"underscore. (Contributed by Serhiy Storchaka in :gh:`91760`.)"
201+
msgstr ""
202+
203+
#: ../../deprecations/pending-removal-in-future.rst:92
204+
msgid ""
205+
":mod:`!sre_compile`, :mod:`!sre_constants` and :mod:`!sre_parse` modules."
206+
msgstr ""
207+
208+
#: ../../deprecations/pending-removal-in-future.rst:94
209+
msgid ""
210+
":mod:`shutil`: :func:`~shutil.rmtree`'s *onerror* parameter is deprecated in"
211+
" Python 3.12; use the *onexc* parameter instead."
212+
msgstr ""
213+
214+
#: ../../deprecations/pending-removal-in-future.rst:97
215+
msgid ":mod:`ssl` options and protocols:"
216+
msgstr ""
217+
218+
#: ../../deprecations/pending-removal-in-future.rst:99
219+
msgid ":class:`ssl.SSLContext` without protocol argument is deprecated."
220+
msgstr ""
221+
222+
#: ../../deprecations/pending-removal-in-future.rst:100
223+
msgid ""
224+
":class:`ssl.SSLContext`: :meth:`~ssl.SSLContext.set_npn_protocols` and "
225+
":meth:`!selected_npn_protocol` are deprecated: use ALPN instead."
226+
msgstr ""
227+
228+
#: ../../deprecations/pending-removal-in-future.rst:103
229+
msgid "``ssl.OP_NO_SSL*`` options"
230+
msgstr ""
231+
232+
#: ../../deprecations/pending-removal-in-future.rst:104
233+
msgid "``ssl.OP_NO_TLS*`` options"
234+
msgstr ""
235+
236+
#: ../../deprecations/pending-removal-in-future.rst:105
237+
msgid "``ssl.PROTOCOL_SSLv3``"
238+
msgstr ""
239+
240+
#: ../../deprecations/pending-removal-in-future.rst:106
241+
msgid "``ssl.PROTOCOL_TLS``"
242+
msgstr ""
243+
244+
#: ../../deprecations/pending-removal-in-future.rst:107
245+
msgid "``ssl.PROTOCOL_TLSv1``"
246+
msgstr ""
247+
248+
#: ../../deprecations/pending-removal-in-future.rst:108
249+
msgid "``ssl.PROTOCOL_TLSv1_1``"
250+
msgstr ""
251+
252+
#: ../../deprecations/pending-removal-in-future.rst:109
253+
msgid "``ssl.PROTOCOL_TLSv1_2``"
254+
msgstr ""
255+
256+
#: ../../deprecations/pending-removal-in-future.rst:110
257+
msgid "``ssl.TLSVersion.SSLv3``"
258+
msgstr ""
259+
260+
#: ../../deprecations/pending-removal-in-future.rst:111
261+
msgid "``ssl.TLSVersion.TLSv1``"
262+
msgstr ""
263+
264+
#: ../../deprecations/pending-removal-in-future.rst:112
265+
msgid "``ssl.TLSVersion.TLSv1_1``"
266+
msgstr ""
267+
268+
#: ../../deprecations/pending-removal-in-future.rst:114
269+
msgid ":mod:`threading` methods:"
270+
msgstr ""
271+
272+
#: ../../deprecations/pending-removal-in-future.rst:116
273+
msgid ""
274+
":meth:`!threading.Condition.notifyAll`: use "
275+
":meth:`~threading.Condition.notify_all`."
276+
msgstr ""
277+
278+
#: ../../deprecations/pending-removal-in-future.rst:117
279+
msgid ":meth:`!threading.Event.isSet`: use :meth:`~threading.Event.is_set`."
280+
msgstr ""
281+
282+
#: ../../deprecations/pending-removal-in-future.rst:118
283+
msgid ""
284+
":meth:`!threading.Thread.isDaemon`, :meth:`threading.Thread.setDaemon`: use "
285+
":attr:`threading.Thread.daemon` attribute."
286+
msgstr ""
287+
288+
#: ../../deprecations/pending-removal-in-future.rst:120
289+
msgid ""
290+
":meth:`!threading.Thread.getName`, :meth:`threading.Thread.setName`: use "
291+
":attr:`threading.Thread.name` attribute."
292+
msgstr ""
293+
294+
#: ../../deprecations/pending-removal-in-future.rst:122
295+
msgid ""
296+
":meth:`!threading.currentThread`: use :meth:`threading.current_thread`."
297+
msgstr ""
298+
299+
#: ../../deprecations/pending-removal-in-future.rst:123
300+
msgid ":meth:`!threading.activeCount`: use :meth:`threading.active_count`."
301+
msgstr ""
302+
303+
#: ../../deprecations/pending-removal-in-future.rst:125
304+
msgid ":class:`typing.Text` (:gh:`92332`)."
305+
msgstr ""
306+
307+
#: ../../deprecations/pending-removal-in-future.rst:127
308+
msgid ""
309+
"The internal class ``typing._UnionGenericAlias`` is no longer used to "
310+
"implement :class:`typing.Union`. To preserve compatibility with users using "
311+
"this private class, a compatibility shim will be provided until at least "
312+
"Python 3.17. (Contributed by Jelle Zijlstra in :gh:`105499`.)"
313+
msgstr ""
314+
315+
#: ../../deprecations/pending-removal-in-future.rst:132
316+
msgid ""
317+
":class:`unittest.IsolatedAsyncioTestCase`: it is deprecated to return a "
318+
"value that is not ``None`` from a test case."
319+
msgstr ""
320+
321+
#: ../../deprecations/pending-removal-in-future.rst:135
322+
msgid ""
323+
":mod:`urllib.parse` deprecated functions: :func:`~urllib.parse.urlparse` "
324+
"instead"
325+
msgstr ""
326+
327+
#: ../../deprecations/pending-removal-in-future.rst:137
328+
msgid "``splitattr()``"
329+
msgstr ""
330+
331+
#: ../../deprecations/pending-removal-in-future.rst:138
332+
msgid "``splithost()``"
333+
msgstr ""
334+
335+
#: ../../deprecations/pending-removal-in-future.rst:139
336+
msgid "``splitnport()``"
337+
msgstr ""
338+
339+
#: ../../deprecations/pending-removal-in-future.rst:140
340+
msgid "``splitpasswd()``"
341+
msgstr ""
342+
343+
#: ../../deprecations/pending-removal-in-future.rst:141
344+
msgid "``splitport()``"
345+
msgstr ""
346+
347+
#: ../../deprecations/pending-removal-in-future.rst:142
348+
msgid "``splitquery()``"
349+
msgstr ""
350+
351+
#: ../../deprecations/pending-removal-in-future.rst:143
352+
msgid "``splittag()``"
353+
msgstr ""
354+
355+
#: ../../deprecations/pending-removal-in-future.rst:144
356+
msgid "``splittype()``"
357+
msgstr ""
358+
359+
#: ../../deprecations/pending-removal-in-future.rst:145
360+
msgid "``splituser()``"
361+
msgstr ""
362+
363+
#: ../../deprecations/pending-removal-in-future.rst:146
364+
msgid "``splitvalue()``"
365+
msgstr ""
366+
367+
#: ../../deprecations/pending-removal-in-future.rst:147
368+
msgid "``to_bytes()``"
369+
msgstr ""
370+
371+
#: ../../deprecations/pending-removal-in-future.rst:149
372+
msgid ""
373+
":mod:`wsgiref`: ``SimpleHandler.stdout.write()`` should not do partial "
374+
"writes."
375+
msgstr ""
376+
377+
#: ../../deprecations/pending-removal-in-future.rst:152
378+
msgid ""
379+
":mod:`xml.etree.ElementTree`: Testing the truth value of an "
380+
":class:`~xml.etree.ElementTree.Element` is deprecated. In a future release "
381+
"it will always return ``True``. Prefer explicit ``len(elem)`` or ``elem is "
382+
"not None`` tests instead."
383+
msgstr ""
384+
385+
#: ../../deprecations/pending-removal-in-future.rst:157
386+
msgid ""
387+
":func:`sys._clear_type_cache` is deprecated: use "
388+
":func:`sys._clear_internal_caches` instead."
389+
msgstr ""

0 commit comments

Comments
 (0)