@@ -11,7 +11,7 @@ msgid ""
11
11
msgstr ""
12
12
"Project-Id-Version : Python 3.12\n "
13
13
"Report-Msgid-Bugs-To : \n "
14
- "POT-Creation-Date : 2025-02-28 14:56 +0000\n "
14
+ "POT-Creation-Date : 2025-03-14 14:53 +0000\n "
15
15
"PO-Revision-Date : 2024-05-11 00:33+0000\n "
16
16
"
Last-Translator :
Rafael Fontenelle <[email protected] >, 2025\n "
17
17
"Language-Team : Portuguese (Brazil) (https://app.transifex.com/python-doc/ "
@@ -148,12 +148,14 @@ msgstr "Cria um subprocesso."
148
148
#: ../../library/asyncio-subprocess.rst:89
149
149
msgid ""
150
150
"The *limit* argument sets the buffer limit for :class:`StreamReader` "
151
- "wrappers for :attr:`Process.stdout` and :attr:`Process.stderr` (if :const:"
152
- "`subprocess.PIPE` is passed to *stdout* and *stderr* arguments)."
151
+ "wrappers for :attr:`~asyncio.subprocess.Process.stdout` and :attr:`~asyncio."
152
+ "subprocess.Process.stderr` (if :const:`subprocess.PIPE` is passed to "
153
+ "*stdout* and *stderr* arguments)."
153
154
msgstr ""
154
155
"O argumento *limit* define o limite do buffer para os invólucros :class:"
155
- "`StreamReader` para :attr:`Process.stdout` e :attr:`Process.stderr` (se :"
156
- "const:`subprocess.PIPE` for passado para os argumentos *stdout* e *stderr*)."
156
+ "`StreamReader` para :attr:`~asyncio.subprocess.Process.stdout` e :attr:"
157
+ "`~asyncio.subprocess.Process.stderr` (se :const:`subprocess.PIPE` for "
158
+ "passado para os argumentos *stdout* e *stderr*)."
157
159
158
160
#: ../../library/asyncio-subprocess.rst:74
159
161
#: ../../library/asyncio-subprocess.rst:93
@@ -232,24 +234,24 @@ msgstr "Pode ser passado para os parâmetros *stdin*, *stdout* ou *stderr*."
232
234
#: ../../library/asyncio-subprocess.rst:133
233
235
msgid ""
234
236
"If *PIPE* is passed to *stdin* argument, the :attr:`Process.stdin <asyncio."
235
- "subprocess.Process.stdin>` attribute will point to a :class:`StreamWriter` "
236
- "instance."
237
+ "subprocess.Process.stdin>` attribute will point to a :class:`~asyncio. "
238
+ "StreamWriter` instance."
237
239
msgstr ""
238
240
"Se *PIPE* for passado para o argumento *stdin*, o atributo :attr:`Process."
239
241
"stdin <asyncio.subprocess.Process.stdin>` irá apontar para uma instância :"
240
- "class:`StreamWriter`."
242
+ "class:`~asyncio. StreamWriter`."
241
243
242
244
#: ../../library/asyncio-subprocess.rst:137
243
245
msgid ""
244
246
"If *PIPE* is passed to *stdout* or *stderr* arguments, the :attr:`Process."
245
247
"stdout <asyncio.subprocess.Process.stdout>` and :attr:`Process.stderr "
246
248
"<asyncio.subprocess.Process.stderr>` attributes will point to :class:"
247
- "`StreamReader` instances."
249
+ "`~asyncio. StreamReader` instances."
248
250
msgstr ""
249
251
"Se *PIPE* for passado para os argumentos *stdout* ou *stderr*, os atributos :"
250
252
"attr:`Process.stdout <asyncio.subprocess.Process.stdout>` e :attr:`Process."
251
253
"stderr <asyncio.subprocess.Process.stderr>` irão apontar para instâncias :"
252
- "class:`StreamReader`."
254
+ "class:`~asyncio. StreamReader`."
253
255
254
256
#: ../../library/asyncio-subprocess.rst:145
255
257
msgid ""
@@ -288,11 +290,13 @@ msgstr ""
288
290
289
291
#: ../../library/asyncio-subprocess.rst:167
290
292
msgid ""
291
- "An object that wraps OS processes created by the :func:"
292
- "`create_subprocess_exec` and :func:`create_subprocess_shell` functions."
293
+ "An object that wraps OS processes created by the :func:`~asyncio."
294
+ "create_subprocess_exec` and :func:`~asyncio.create_subprocess_shell` "
295
+ "functions."
293
296
msgstr ""
294
297
"Um objeto que envolve processos do sistema operacional criados pelas "
295
- "funções :func:`create_subprocess_exec` e :func:`create_subprocess_shell`."
298
+ "funções :func:`~asyncio.create_subprocess_exec` e :func:`~asyncio."
299
+ "create_subprocess_shell`."
296
300
297
301
#: ../../library/asyncio-subprocess.rst:171
298
302
msgid ""
@@ -478,37 +482,39 @@ msgstr "Mata o processo filho."
478
482
479
483
#: ../../library/asyncio-subprocess.rst:266
480
484
msgid ""
481
- "On POSIX systems this method sends :py:data:`SIGKILL` to the child process."
485
+ "On POSIX systems this method sends :py:data:`~signal.SIGKILL` to the child "
486
+ "process."
482
487
msgstr ""
483
- "Em sistemas POSIX este método envia :py:data:`SIGKILL` para o processo filho."
488
+ "Em sistemas POSIX este método envia :py:data:`~signal.SIGKILL` para o "
489
+ "processo filho."
484
490
485
491
#: ../../library/asyncio-subprocess.rst:269
486
492
msgid "On Windows this method is an alias for :meth:`terminate`."
487
493
msgstr "No Windows, este método é um atalho para :meth:`terminate`."
488
494
489
495
#: ../../library/asyncio-subprocess.rst:273
490
496
msgid ""
491
- "Standard input stream (:class:`StreamWriter`) or ``None`` if the process was "
492
- "created with ``stdin=None``."
497
+ "Standard input stream (:class:`~asyncio. StreamWriter`) or ``None`` if the "
498
+ "process was created with ``stdin=None``."
493
499
msgstr ""
494
- "Fluxo de entrada padrão (:class:`StreamWriter`) ou ``None`` se o processo "
495
- "foi criado com ``stdin=None``."
500
+ "Fluxo de entrada padrão (:class:`~asyncio. StreamWriter`) ou ``None`` se o "
501
+ "processo foi criado com ``stdin=None``."
496
502
497
503
#: ../../library/asyncio-subprocess.rst:278
498
504
msgid ""
499
- "Standard output stream (:class:`StreamReader`) or ``None`` if the process "
500
- "was created with ``stdout=None``."
505
+ "Standard output stream (:class:`~asyncio. StreamReader`) or ``None`` if the "
506
+ "process was created with ``stdout=None``."
501
507
msgstr ""
502
- "Fluxo de saída padrão (:class:`StreamReader`) ou ``None`` se o processo foi "
503
- "criado com ``stdout=None``."
508
+ "Fluxo de saída padrão (:class:`~asyncio. StreamReader`) ou ``None`` se o "
509
+ "processo foi criado com ``stdout=None``."
504
510
505
511
#: ../../library/asyncio-subprocess.rst:283
506
512
msgid ""
507
- "Standard error stream (:class:`StreamReader`) or ``None`` if the process was "
508
- "created with ``stderr=None``."
513
+ "Standard error stream (:class:`~asyncio. StreamReader`) or ``None`` if the "
514
+ "process was created with ``stderr=None``."
509
515
msgstr ""
510
- "Erro de fluxo padrão (:class:`StreamReader`) ou ``None`` se o processo foi "
511
- "criado com ``stderr=None``."
516
+ "Erro de fluxo padrão (:class:`~asyncio. StreamReader`) ou ``None`` se o "
517
+ "processo foi criado com ``stderr=None``."
512
518
513
519
#: ../../library/asyncio-subprocess.rst:288
514
520
msgid ""
@@ -528,11 +534,12 @@ msgstr "Número de identificação do processo (PID)."
528
534
529
535
#: ../../library/asyncio-subprocess.rst:299
530
536
msgid ""
531
- "Note that for processes created by the :func:`create_subprocess_shell` "
532
- "function, this attribute is the PID of the spawned shell."
537
+ "Note that for processes created by the :func:`~asyncio."
538
+ "create_subprocess_shell` function, this attribute is the PID of the spawned "
539
+ "shell."
533
540
msgstr ""
534
- "Perceba que para processos criados pela função :func:"
535
- "` create_subprocess_shell`, este atributo é o PID do console gerado."
541
+ "Perceba que para processos criados pela função :func:`~asyncio. "
542
+ "create_subprocess_shell`, este atributo é o PID do console gerado."
536
543
537
544
#: ../../library/asyncio-subprocess.rst:304
538
545
msgid "Return code of the process when it exits."
0 commit comments