@@ -12,7 +12,7 @@ msgid ""
12
12
msgstr ""
13
13
"Project-Id-Version : Python 3.14\n "
14
14
"Report-Msgid-Bugs-To : \n "
15
- "POT-Creation-Date : 2025-05-08 02:53-0300 \n "
15
+ "POT-Creation-Date : 2025-05-16 14:19+0000 \n "
16
16
"PO-Revision-Date : 2024-07-29 04:07+0000\n "
17
17
"
Last-Translator :
Rafael Fontenelle <[email protected] >, 2025\n "
18
18
"Language-Team : Portuguese (Brazil) (https://app.transifex.com/python-doc/ "
@@ -217,6 +217,20 @@ msgstr ""
217
217
218
218
#: ../../deprecations/pending-removal-in-3.15.rst:88
219
219
msgid ""
220
+ "When using the functional syntax of :class:`~typing.TypedDict`\\ s, failing "
221
+ "to pass a value to the *fields* parameter (``TD = TypedDict(\" TD\" )``) or "
222
+ "passing ``None`` (``TD = TypedDict(\" TD\" , None)``) has been deprecated "
223
+ "since Python 3.13. Use ``class TD(TypedDict): pass`` or ``TD = "
224
+ "TypedDict(\" TD\" , {})`` to create a TypedDict with zero field."
225
+ msgstr ""
226
+ "Ao usar a sintaxe funcional de :class:`~typing.TypedDict`\\ s, não passar um "
227
+ "valor para o parâmetro *fields* (``TD = TypedDict(\" TD\" )``) ou passar "
228
+ "``None`` (``TD = TypedDict(\" TD\" , None)``) foi está descontinuado desde o "
229
+ "Python 3.13. Use ``class TD(TypedDict): pass`` ou ``TD = TypedDict(\" TD\" , "
230
+ "{})`` para criar uma classe TypedDict com nenhum campo."
231
+
232
+ #: ../../deprecations/pending-removal-in-3.15.rst:95
233
+ msgid ""
220
234
"The :func:`typing.no_type_check_decorator` decorator function has been "
221
235
"deprecated since Python 3.13. After eight years in the :mod:`typing` module, "
222
236
"it has yet to be supported by any major type checker."
@@ -225,11 +239,11 @@ msgstr ""
225
239
"desde o Python 3.13. Após oito anos no módulo :mod:`typing`, ela ainda não "
226
240
"foi suportada por nenhum verificador de tipo importante."
227
241
228
- #: ../../deprecations/pending-removal-in-3.15.rst:93
242
+ #: ../../deprecations/pending-removal-in-3.15.rst:100
229
243
msgid ":mod:`wave`:"
230
244
msgstr ":mod:`wave`:"
231
245
232
- #: ../../deprecations/pending-removal-in-3.15.rst:95
246
+ #: ../../deprecations/pending-removal-in-3.15.rst:102
233
247
msgid ""
234
248
"The :meth:`~wave.Wave_read.getmark`, :meth:`!setmark`, and :meth:`~wave."
235
249
"Wave_read.getmarkers` methods of the :class:`~wave.Wave_read` and :class:"
@@ -239,11 +253,11 @@ msgstr ""
239
253
"Wave_read.getmarkers` das classes :class:`~wave.Wave_read` e :class:`~wave."
240
254
"Wave_write` foram descontinuados desde o Python 3.13."
241
255
242
- #: ../../deprecations/pending-removal-in-3.15.rst:100
256
+ #: ../../deprecations/pending-removal-in-3.15.rst:107
243
257
msgid ":mod:`zipimport`:"
244
258
msgstr ":mod:`zipimport`:"
245
259
246
- #: ../../deprecations/pending-removal-in-3.15.rst:102
260
+ #: ../../deprecations/pending-removal-in-3.15.rst:109
247
261
msgid ""
248
262
":meth:`~zipimport.zipimporter.load_module` has been deprecated since Python "
249
263
"3.10. Use :meth:`~zipimport.zipimporter.exec_module` instead. (Contributed "
0 commit comments