Skip to content

Commit 9f2fb97

Browse files
author
github-actions
committed
Merge 3.11 into 3.9
1 parent aa7db39 commit 9f2fb97

File tree

1 file changed

+49
-49
lines changed

1 file changed

+49
-49
lines changed

library/gc.po

Lines changed: 49 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ msgstr ""
1515
"POT-Creation-Date: 2021-03-18 05:44+0000\n"
1616
"PO-Revision-Date: 2017-02-16 23:12+0000\n"
1717
"Last-Translator: i17obot <i17obot@rougeth.com>, 2020\n"
18-
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/python-doc/teams/5390/pt_BR/)\n"
18+
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/python-doc/"
19+
"teams/5390/pt_BR/)\n"
1920
"Language: pt_BR\n"
2021
"MIME-Version: 1.0\n"
2122
"Content-Type: text/plain; charset=UTF-8\n"
@@ -32,33 +33,32 @@ msgid ""
3233
"provides the ability to disable the collector, tune the collection "
3334
"frequency, and set debugging options. It also provides access to "
3435
"unreachable objects that the collector found but cannot free. Since the "
35-
"collector supplements the reference counting already used in Python, you can"
36-
" disable the collector if you are sure your program does not create "
37-
"reference cycles. Automatic collection can be disabled by calling "
38-
"``gc.disable()``. To debug a leaking program call "
39-
"``gc.set_debug(gc.DEBUG_LEAK)``. Notice that this includes "
40-
"``gc.DEBUG_SAVEALL``, causing garbage-collected objects to be saved in "
41-
"gc.garbage for inspection."
36+
"collector supplements the reference counting already used in Python, you can "
37+
"disable the collector if you are sure your program does not create reference "
38+
"cycles. Automatic collection can be disabled by calling ``gc.disable()``. "
39+
"To debug a leaking program call ``gc.set_debug(gc.DEBUG_LEAK)``. Notice that "
40+
"this includes ``gc.DEBUG_SAVEALL``, causing garbage-collected objects to be "
41+
"saved in gc.garbage for inspection."
4242
msgstr ""
4343
"Este módulo fornece uma interface para o opcional garbage collector. Ele "
4444
"disponibiliza a habilidade de desabilitar o collector, ajustar a frequência "
4545
"da coleção, e configurar as opções de depuração. Ele também fornece acesso "
4646
"para objetos inacessíveis que o collector encontra mas não pode \"limpar\". "
4747
"Como o collector complementa a contagem de referência já usada em Python, "
48-
"você pode desabilitar o collector se você tem certeza que o seu programa não"
49-
" cria ciclos de referências. A coleta automática pode ser desabilitada pela "
50-
"chamada ``gc.disable()``. Para depurar um programa vazando, chame "
51-
"``gc.set_debug(gc.DEBUG_LEAK)``. Perceba que isto inclui "
52-
"``gc.DEBUG_SAVEALL``, fazendo com que objetos coletados pelo garbage-"
53-
"collector sejam salvos para inspeção em gc.garbage."
48+
"você pode desabilitar o collector se você tem certeza que o seu programa não "
49+
"cria ciclos de referências. A coleta automática pode ser desabilitada pela "
50+
"chamada ``gc.disable()``. Para depurar um programa vazando, chame ``gc."
51+
"set_debug(gc.DEBUG_LEAK)``. Perceba que isto inclui ``gc.DEBUG_SAVEALL``, "
52+
"fazendo com que objetos coletados pelo garbage-collector sejam salvos para "
53+
"inspeção em gc.garbage."
5454

5555
#: ../../library/gc.rst:23
5656
msgid "The :mod:`gc` module provides the following functions:"
57-
msgstr ""
57+
msgstr "O módulo :mod:`gc` fornece as seguintes funções:"
5858

5959
#: ../../library/gc.rst:28
6060
msgid "Enable automatic garbage collection."
61-
msgstr ""
61+
msgstr "Habilita a coleta de lixo automática."
6262

6363
#: ../../library/gc.rst:33
6464
msgid "Disable automatic garbage collection."
@@ -156,9 +156,9 @@ msgid ""
156156
"examined. If generation ``0`` has been examined more than *threshold1* "
157157
"times since generation ``1`` has been examined, then generation ``1`` is "
158158
"examined as well. With the third generation, things are a bit more "
159-
"complicated, see `Collecting the oldest generation "
160-
"<https://devguide.python.org/garbage_collector/#collecting-the-oldest-"
161-
"generation>`_ for more information."
159+
"complicated, see `Collecting the oldest generation <https://devguide.python."
160+
"org/garbage_collector/#collecting-the-oldest-generation>`_ for more "
161+
"information."
162162
msgstr ""
163163

164164
#: ../../library/gc.rst:118
@@ -177,8 +177,8 @@ msgstr ""
177177

178178
#: ../../library/gc.rst:130
179179
msgid ""
180-
"Return the list of objects that directly refer to any of objs. This function"
181-
" will only locate those containers which support garbage collection; "
180+
"Return the list of objects that directly refer to any of objs. This function "
181+
"will only locate those containers which support garbage collection; "
182182
"extension types which do refer to other objects but do not support garbage "
183183
"collection will not be found."
184184
msgstr ""
@@ -195,8 +195,8 @@ msgstr ""
195195
msgid ""
196196
"Care must be taken when using objects returned by :func:`get_referrers` "
197197
"because some of them could still be under construction and hence in a "
198-
"temporarily invalid state. Avoid using :func:`get_referrers` for any purpose"
199-
" other than debugging."
198+
"temporarily invalid state. Avoid using :func:`get_referrers` for any purpose "
199+
"other than debugging."
200200
msgstr ""
201201

202202
#: ../../library/gc.rst:146
@@ -208,13 +208,13 @@ msgstr ""
208208
#: ../../library/gc.rst:151
209209
msgid ""
210210
"Return a list of objects directly referred to by any of the arguments. The "
211-
"referents returned are those objects visited by the arguments' C-level "
212-
":c:member:`~PyTypeObject.tp_traverse` methods (if any), and may not be all "
211+
"referents returned are those objects visited by the arguments' C-level :c:"
212+
"member:`~PyTypeObject.tp_traverse` methods (if any), and may not be all "
213213
"objects actually directly reachable. :c:member:`~PyTypeObject.tp_traverse` "
214214
"methods are supported only by objects that support garbage collection, and "
215-
"are only required to visit objects that may be involved in a cycle. So, for"
216-
" example, if an integer is directly reachable from an argument, that integer"
217-
" object may or may not appear in the result list."
215+
"are only required to visit objects that may be involved in a cycle. So, for "
216+
"example, if an integer is directly reachable from an argument, that integer "
217+
"object may or may not appear in the result list."
218218
msgstr ""
219219

220220
#: ../../library/gc.rst:159
@@ -243,8 +243,8 @@ msgstr ""
243243
msgid ""
244244
"Freeze all the objects tracked by gc - move them to a permanent generation "
245245
"and ignore all the future collections. This can be used before a POSIX "
246-
"fork() call to make the gc copy-on-write friendly or to speed up collection."
247-
" Also collection before a POSIX fork() call may free pages for future "
246+
"fork() call to make the gc copy-on-write friendly or to speed up collection. "
247+
"Also collection before a POSIX fork() call may free pages for future "
248248
"allocation which can cause copy-on-write too so it's advised to disable gc "
249249
"in parent process and freeze before fork and enable gc in child process."
250250
msgstr ""
@@ -269,35 +269,35 @@ msgstr ""
269269
msgid ""
270270
"A list of objects which the collector found to be unreachable but could not "
271271
"be freed (uncollectable objects). Starting with Python 3.4, this list "
272-
"should be empty most of the time, except when using instances of C extension"
273-
" types with a non-``NULL`` ``tp_del`` slot."
272+
"should be empty most of the time, except when using instances of C extension "
273+
"types with a non-``NULL`` ``tp_del`` slot."
274274
msgstr ""
275275

276276
#: ../../library/gc.rst:244
277277
msgid ""
278-
"If :const:`DEBUG_SAVEALL` is set, then all unreachable objects will be added"
279-
" to this list rather than freed."
278+
"If :const:`DEBUG_SAVEALL` is set, then all unreachable objects will be added "
279+
"to this list rather than freed."
280280
msgstr ""
281281

282282
#: ../../library/gc.rst:247
283283
msgid ""
284-
"If this list is non-empty at :term:`interpreter shutdown`, a "
285-
":exc:`ResourceWarning` is emitted, which is silent by default. If "
286-
":const:`DEBUG_UNCOLLECTABLE` is set, in addition all uncollectable objects "
287-
"are printed."
284+
"If this list is non-empty at :term:`interpreter shutdown`, a :exc:"
285+
"`ResourceWarning` is emitted, which is silent by default. If :const:"
286+
"`DEBUG_UNCOLLECTABLE` is set, in addition all uncollectable objects are "
287+
"printed."
288288
msgstr ""
289289

290290
#: ../../library/gc.rst:253
291291
msgid ""
292-
"Following :pep:`442`, objects with a :meth:`__del__` method don't end up in "
293-
":attr:`gc.garbage` anymore."
292+
"Following :pep:`442`, objects with a :meth:`__del__` method don't end up in :"
293+
"attr:`gc.garbage` anymore."
294294
msgstr ""
295295

296296
#: ../../library/gc.rst:259
297297
msgid ""
298-
"A list of callbacks that will be invoked by the garbage collector before and"
299-
" after collection. The callbacks will be called with two arguments, *phase*"
300-
" and *info*."
298+
"A list of callbacks that will be invoked by the garbage collector before and "
299+
"after collection. The callbacks will be called with two arguments, *phase* "
300+
"and *info*."
301301
msgstr ""
302302

303303
#: ../../library/gc.rst:263
@@ -314,8 +314,8 @@ msgstr ""
314314

315315
#: ../../library/gc.rst:269
316316
msgid ""
317-
"*info* is a dict providing more information for the callback. The following"
318-
" keys are currently defined:"
317+
"*info* is a dict providing more information for the callback. The following "
318+
"keys are currently defined:"
319319
msgstr ""
320320

321321
#: ../../library/gc.rst:272
@@ -381,13 +381,13 @@ msgstr ""
381381

382382
#: ../../library/gc.rst:319
383383
msgid ""
384-
"When set, all unreachable objects found will be appended to *garbage* rather"
385-
" than being freed. This can be useful for debugging a leaking program."
384+
"When set, all unreachable objects found will be appended to *garbage* rather "
385+
"than being freed. This can be useful for debugging a leaking program."
386386
msgstr ""
387387

388388
#: ../../library/gc.rst:325
389389
msgid ""
390-
"The debugging flags necessary for the collector to print information about a"
391-
" leaking program (equal to ``DEBUG_COLLECTABLE | DEBUG_UNCOLLECTABLE | "
390+
"The debugging flags necessary for the collector to print information about a "
391+
"leaking program (equal to ``DEBUG_COLLECTABLE | DEBUG_UNCOLLECTABLE | "
392392
"DEBUG_SAVEALL``)."
393393
msgstr ""

0 commit comments

Comments
 (0)