11# SOME DESCRIPTIVE TITLE.
2- # Copyright (C) 2001-2025 , Python Software Foundation
2+ # Copyright (C) 2001-2026 , Python Software Foundation
33# This file is distributed under the same license as the Python package.
44# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55#
@@ -12,7 +12,7 @@ msgid ""
1212msgstr ""
1313"Project-Id-Version : Python 3.13\n "
1414"Report-Msgid-Bugs-To : \n "
15- "POT-Creation-Date : 2025-12-19 15:01 +0000\n "
15+ "POT-Creation-Date : 2026-04-09 16:07 +0000\n "
1616"PO-Revision-Date : 2025-09-15 01:03+0000\n "
1717"Last-Translator : Adorilson Bezerra <adorilson@gmail.com>, 2025\n "
1818"Language-Team : Portuguese (Brazil) (https://app.transifex.com/python-doc/ "
@@ -201,7 +201,7 @@ msgid ""
201201"`set_exception` method, this method raises the exception."
202202msgstr ""
203203
204- #: ../../library/asyncio-future.rst:120 ../../library/asyncio-future.rst:208
204+ #: ../../library/asyncio-future.rst:120 ../../library/asyncio-future.rst:212
205205msgid ""
206206"If the Future has been *cancelled*, this method raises a :exc:"
207207"`CancelledError` exception."
@@ -321,36 +321,42 @@ msgid ""
321321msgstr ""
322322
323323#: ../../library/asyncio-future.rst:198
324+ msgid ""
325+ "The optional string argument *msg* is passed as the argument to the :exc:"
326+ "`CancelledError` exception raised when a cancelled Future is awaited."
327+ msgstr ""
328+
329+ #: ../../library/asyncio-future.rst:202
324330msgid "Added the *msg* parameter."
325331msgstr "Adicionado o parâmetro *msg*."
326332
327- #: ../../library/asyncio-future.rst:203
333+ #: ../../library/asyncio-future.rst:207
328334msgid "Return the exception that was set on this Future."
329335msgstr ""
330336
331- #: ../../library/asyncio-future.rst:205
337+ #: ../../library/asyncio-future.rst:209
332338msgid ""
333339"The exception (or ``None`` if no exception was set) is returned only if the "
334340"Future is *done*."
335341msgstr ""
336342
337- #: ../../library/asyncio-future.rst:211
343+ #: ../../library/asyncio-future.rst:215
338344msgid ""
339345"If the Future isn't *done* yet, this method raises an :exc:"
340346"`InvalidStateError` exception."
341347msgstr ""
342348
343- #: ../../library/asyncio-future.rst:216
349+ #: ../../library/asyncio-future.rst:220
344350msgid "Return the event loop the Future object is bound to."
345351msgstr ""
346352
347- #: ../../library/asyncio-future.rst:223
353+ #: ../../library/asyncio-future.rst:227
348354msgid ""
349355"This example creates a Future object, creates and schedules an asynchronous "
350356"Task to set result for the Future, and waits until the Future has a result::"
351357msgstr ""
352358
353- #: ../../library/asyncio-future.rst:227
359+ #: ../../library/asyncio-future.rst:231
354360msgid ""
355361"async def set_after(fut, delay, value):\n"
356362" # Sleep for *delay* seconds.\n"
@@ -381,43 +387,43 @@ msgid ""
381387"asyncio.run(main())"
382388msgstr ""
383389
384- #: ../../library/asyncio-future.rst:258
390+ #: ../../library/asyncio-future.rst:262
385391msgid ""
386392"The Future object was designed to mimic :class:`concurrent.futures.Future`. "
387393"Key differences include:"
388394msgstr ""
389395
390- #: ../../library/asyncio-future.rst:261
396+ #: ../../library/asyncio-future.rst:265
391397msgid ""
392398"unlike asyncio Futures, :class:`concurrent.futures.Future` instances cannot "
393399"be awaited."
394400msgstr ""
395401
396- #: ../../library/asyncio-future.rst:264
402+ #: ../../library/asyncio-future.rst:268
397403msgid ""
398404":meth:`asyncio.Future.result` and :meth:`asyncio.Future.exception` do not "
399405"accept the *timeout* argument."
400406msgstr ""
401407
402- #: ../../library/asyncio-future.rst:267
408+ #: ../../library/asyncio-future.rst:271
403409msgid ""
404410":meth:`asyncio.Future.result` and :meth:`asyncio.Future.exception` raise an :"
405411"exc:`InvalidStateError` exception when the Future is not *done*."
406412msgstr ""
407413
408- #: ../../library/asyncio-future.rst:271
414+ #: ../../library/asyncio-future.rst:275
409415msgid ""
410416"Callbacks registered with :meth:`asyncio.Future.add_done_callback` are not "
411417"called immediately. They are scheduled with :meth:`loop.call_soon` instead."
412418msgstr ""
413419
414- #: ../../library/asyncio-future.rst:275
420+ #: ../../library/asyncio-future.rst:279
415421msgid ""
416422"asyncio Future is not compatible with the :func:`concurrent.futures.wait` "
417423"and :func:`concurrent.futures.as_completed` functions."
418424msgstr ""
419425
420- #: ../../library/asyncio-future.rst:279
426+ #: ../../library/asyncio-future.rst:283
421427msgid ""
422428":meth:`asyncio.Future.cancel` accepts an optional ``msg`` argument, but :"
423429"meth:`concurrent.futures.Future.cancel` does not."
0 commit comments