FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

Update translation · python/python-docs-pt-br@73ccf58 · GitHub

Commit 73ccf58

Browse files
Update translation
1 parent 90a8c37 commit 73ccf58

8 files changed

Lines changed: 14913 additions & 14587 deletions

File tree

‎library/asyncio-graph.po‎

Lines changed: 39 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.14\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-05-08 19:31+0000\n"
14+
"POT-Creation-Date: 2026-07-09 16:24+0000\n"
1515
"PO-Revision-Date: 2026-05-08 17:17+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2026\n"
1717
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
@@ -24,8 +24,8 @@ msgstr ""
2424
"1000000 == 0 ? 1 : 2;\n"
2525

2626
#: ../../library/asyncio-graph.rst:8
27-
msgid "Call Graph Introspection"
28-
msgstr "Introspeção do grafo de chamadas"
27+
msgid "Call graph introspection"
28+
msgstr ""
2929

3030
#: ../../library/asyncio-graph.rst:10
3131
msgid "**Source code:** :source:`Lib/asyncio/graph.py`"
@@ -44,31 +44,40 @@ msgstr ""
4444
"suspenso. Estes utilitários e a respectiva maquinaria subjacente podem ser "
4545
"utilizados em um programa Python ou por perfis externos e depuradores."
4646

47-
#: ../../library/asyncio-graph.rst:25
47+
#: ../../library/asyncio-graph.rst:22
48+
msgid ":ref:`asyncio-introspection-tools`"
49+
msgstr ""
50+
51+
#: ../../library/asyncio-graph.rst:23
52+
msgid ""
53+
"Command-line tools for inspecting tasks in another running Python process."
54+
msgstr ""
55+
56+
#: ../../library/asyncio-graph.rst:31
4857
msgid ""
4958
"Print the async call graph for the current task or the provided :class:"
5059
"`Task` or :class:`Future`."
5160
msgstr ""
5261
"Exibe o grafo de chamadas assíncronas para a tarefa atual ou para a :class:"
5362
"`Task` ou :class:`Future` fornecida."
5463

55-
#: ../../library/asyncio-graph.rst:28
64+
#: ../../library/asyncio-graph.rst:34
5665
msgid ""
5766
"This function prints entries starting from the top frame and going down "
5867
"towards the invocation point."
5968
msgstr ""
6069
"Esta função exibe as entradas a partir do quadro superior até ao ponto de "
6170
"invocação."
6271

63-
#: ../../library/asyncio-graph.rst:31
72+
#: ../../library/asyncio-graph.rst:37
6473
msgid ""
6574
"The function receives an optional *future* argument. If not passed, the "
6675
"current running task will be used."
6776
msgstr ""
6877
"A função recebe um argumento opcional *future*. Se não for fornecido, será "
6978
"utilizada a tarefa em execução atual."
7079

71-
#: ../../library/asyncio-graph.rst:34 ../../library/asyncio-graph.rst:93
80+
#: ../../library/asyncio-graph.rst:40 ../../library/asyncio-graph.rst:99
7281
msgid ""
7382
"If the function is called on *the current task*, the optional keyword-only "
7483
"*depth* argument can be used to skip the specified number of frames from top "
@@ -78,7 +87,7 @@ msgstr ""
7887
"nomeado *depth* pode ser usado para ignorar o número especificado de quadros "
7988
"a partir do topo da pilha."
8089

81-
#: ../../library/asyncio-graph.rst:38
90+
#: ../../library/asyncio-graph.rst:44
8291
msgid ""
8392
"If the optional keyword-only *limit* argument is provided, each call stack "
8493
"in the resulting graph is truncated to include at most ``abs(limit)`` "
@@ -96,23 +105,23 @@ msgstr ""
96105
"entradas são apresentadas. Se *limit* for ``0``, a pilha de chamadas não é "
97106
"exibida, apenas as informações \"aguardadas por\" são exibidas."
98107

99-
#: ../../library/asyncio-graph.rst:46
108+
#: ../../library/asyncio-graph.rst:52
100109
msgid ""
101110
"If *file* is omitted or ``None``, the function will print to :data:`sys."
102111
"stdout`."
103112
msgstr ""
104113
"Se *file* for omitido ou for ``None``, a saída da função será encaminhada "
105114
"para :data:`sys.stdout`."
106115

107-
#: ../../library/asyncio-graph.rst:49
116+
#: ../../library/asyncio-graph.rst:55
108117
msgid "**Example:**"
109118
msgstr "**Exemplo:**"
110119

111-
#: ../../library/asyncio-graph.rst:51
120+
#: ../../library/asyncio-graph.rst:57
112121
msgid "The following Python code:"
113122
msgstr "O seguinte código Python:"
114123

115-
#: ../../library/asyncio-graph.rst:53
124+
#: ../../library/asyncio-graph.rst:59
116125
msgid ""
117126
"import asyncio\n"
118127
"\n"
@@ -129,11 +138,11 @@ msgstr ""
129138
"main(): async with asyncio.TaskGroup() as g: g.create_task(test(), "
130139
"name='test')asyncio.run(main())"
131140

132-
#: ../../library/asyncio-graph.rst:66
141+
#: ../../library/asyncio-graph.rst:72
133142
msgid "will print::"
134143
msgstr "irá exibir::"
135144

136-
#: ../../library/asyncio-graph.rst:68
145+
#: ../../library/asyncio-graph.rst:74
137146
msgid ""
138147
"* Task(name='test', id=0x1039f0fe0)\n"
139148
"+ Call stack:\n"
@@ -149,7 +158,7 @@ msgstr ""
149158
"Call stack: | File 'taskgroups.py', line 107, in async TaskGroup."
150159
"__aexit__() | File 't2.py', line 7, in async main()"
151160

152-
#: ../../library/asyncio-graph.rst:79
161+
#: ../../library/asyncio-graph.rst:85
153162
msgid ""
154163
"Like :func:`print_call_graph`, but returns a string. If *future* is ``None`` "
155164
"and there's no current task, the function returns an empty string."
@@ -158,15 +167,15 @@ msgstr ""
158167
"for ``None`` e não houver nenhuma tarefa atual, a função retorna uma string "
159168
"vazia."
160169

161-
#: ../../library/asyncio-graph.rst:86
170+
#: ../../library/asyncio-graph.rst:92
162171
msgid ""
163172
"Capture the async call graph for the current task or the provided :class:"
164173
"`Task` or :class:`Future`."
165174
msgstr ""
166175
"Captura o grafo de chamadas assíncronas para a tarefa atual ou para a :class:"
167176
"`Task` ou :class:`Future` fornecida."
168177

169-
#: ../../library/asyncio-graph.rst:89
178+
#: ../../library/asyncio-graph.rst:95
170179
msgid ""
171180
"The function receives an optional *future* argument. If not passed, the "
172181
"current running task will be used. If there's no current task, the function "
@@ -176,47 +185,47 @@ msgstr ""
176185
"utilizada a tarefa em execução atual. Se não existir nenhuma tarefa atual, a "
177186
"função retorna ``None``."
178187

179-
#: ../../library/asyncio-graph.rst:97
188+
#: ../../library/asyncio-graph.rst:103
180189
msgid "Returns a ``FutureCallGraph`` data class object:"
181190
msgstr "Retorna um objeto da classe de dados ``FutureCallGraph``:"
182191

183-
#: ../../library/asyncio-graph.rst:99
192+
#: ../../library/asyncio-graph.rst:105
184193
msgid "``FutureCallGraph(future, call_stack, awaited_by)``"
185194
msgstr "``FutureCallGraph(future, call_stack, awaited_by)``"
186195

187-
#: ../../library/asyncio-graph.rst:101
196+
#: ../../library/asyncio-graph.rst:107
188197
msgid ""
189198
"Where *future* is a reference to a :class:`Future` or a :class:`Task` (or "
190199
"their subclasses.)"
191200
msgstr ""
192201
"Onde *future* é uma referência a um :class:`Future` ou a uma :class:`Task` "
193202
"(ou às suas subclasses)."
194203

195-
#: ../../library/asyncio-graph.rst:104
204+
#: ../../library/asyncio-graph.rst:110
196205
msgid "``call_stack`` is a tuple of ``FrameCallGraphEntry`` objects."
197206
msgstr "``call_stack`` é uma tupla de objetos ``FrameCallGraphEntry``."
198207

199-
#: ../../library/asyncio-graph.rst:106
208+
#: ../../library/asyncio-graph.rst:112
200209
msgid "``awaited_by`` is a tuple of ``FutureCallGraph`` objects."
201210
msgstr "``awaited_by`` é uma tupla de objetos ``FutureCallGraph``."
202211

203-
#: ../../library/asyncio-graph.rst:108
212+
#: ../../library/asyncio-graph.rst:114
204213
msgid "``FrameCallGraphEntry(frame)``"
205214
msgstr "``FrameCallGraphEntry(frame)``"
206215

207-
#: ../../library/asyncio-graph.rst:110
216+
#: ../../library/asyncio-graph.rst:116
208217
msgid ""
209218
"Where *frame* is a frame object of a regular Python function in the call "
210219
"stack."
211220
msgstr ""
212221
"Onde *frame* é um objeto de quadro de uma função Python regular na pilha de "
213222
"chamadas."
214223

215-
#: ../../library/asyncio-graph.rst:115
224+
#: ../../library/asyncio-graph.rst:121
216225
msgid "Low level utility functions"
217226
msgstr "Funções utilitárias de baixo nível"
218227

219-
#: ../../library/asyncio-graph.rst:117
228+
#: ../../library/asyncio-graph.rst:123
220229
msgid ""
221230
"To introspect an async call graph asyncio requires cooperation from control "
222231
"flow structures, such as :func:`shield` or :class:`TaskGroup`. Any time an "
@@ -235,11 +244,11 @@ msgstr ""
235244
"objetos *future* intermédios estão ligados às tarefas que envolvem ou "
236245
"controlam."
237246

238-
#: ../../library/asyncio-graph.rst:128
247+
#: ../../library/asyncio-graph.rst:134
239248
msgid "Record that *future* is awaited on by *waiter*."
240249
msgstr "Registra que *future* está a ser aguardado por *waiter*."
241250

242-
#: ../../library/asyncio-graph.rst:130 ../../library/asyncio-graph.rst:143
251+
#: ../../library/asyncio-graph.rst:136 ../../library/asyncio-graph.rst:149
243252
msgid ""
244253
"Both *future* and *waiter* must be instances of :class:`Future` or :class:"
245254
"`Task` or their subclasses, otherwise the call would have no effect."
@@ -248,7 +257,7 @@ msgstr ""
248257
"class:`Task` ou de suas subclasses; caso contrário, a chamada não terá "
249258
"efeito."
250259

251-
#: ../../library/asyncio-graph.rst:134
260+
#: ../../library/asyncio-graph.rst:140
252261
msgid ""
253262
"A call to ``future_add_to_awaited_by()`` must be followed by an eventual "
254263
"call to the :func:`future_discard_from_awaited_by` function with the same "
@@ -258,6 +267,6 @@ msgstr ""
258267
"chamada eventual à função :func:`future_discard_from_awaited_by` com os "
259268
"mesmos argumentos."
260269

261-
#: ../../library/asyncio-graph.rst:141
270+
#: ../../library/asyncio-graph.rst:147
262271
msgid "Record that *future* is no longer awaited on by *waiter*."
263272
msgstr "Registra que *future* não está mais sendo aguardado por *waiter*."

0 commit comments

Comments
 (0)

Back | FazBrowse Home | New Git URL