@@ -15,7 +15,8 @@ msgstr ""
15
15
"POT-Creation-Date : 2021-03-18 05:44+0000\n "
16
16
"PO-Revision-Date : 2017-02-16 23:12+0000\n "
17
17
"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 "
19
20
"Language : pt_BR\n "
20
21
"MIME-Version : 1.0\n "
21
22
"Content-Type : text/plain; charset=UTF-8\n "
@@ -32,33 +33,32 @@ msgid ""
32
33
"provides the ability to disable the collector, tune the collection "
33
34
"frequency, and set debugging options. It also provides access to "
34
35
"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."
42
42
msgstr ""
43
43
"Este módulo fornece uma interface para o opcional garbage collector. Ele "
44
44
"disponibiliza a habilidade de desabilitar o collector, ajustar a frequência "
45
45
"da coleção, e configurar as opções de depuração. Ele também fornece acesso "
46
46
"para objetos inacessíveis que o collector encontra mas não pode \" limpar\" . "
47
47
"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."
54
54
55
55
#: ../../library/gc.rst:23
56
56
msgid "The :mod:`gc` module provides the following functions:"
57
- msgstr ""
57
+ msgstr "O módulo :mod:`gc` fornece as seguintes funções: "
58
58
59
59
#: ../../library/gc.rst:28
60
60
msgid "Enable automatic garbage collection."
61
- msgstr ""
61
+ msgstr "Habilita a coleta de lixo automática. "
62
62
63
63
#: ../../library/gc.rst:33
64
64
msgid "Disable automatic garbage collection."
@@ -156,9 +156,9 @@ msgid ""
156
156
"examined. If generation ``0`` has been examined more than *threshold1* "
157
157
"times since generation ``1`` has been examined, then generation ``1`` is "
158
158
"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."
162
162
msgstr ""
163
163
164
164
#: ../../library/gc.rst:118
@@ -177,8 +177,8 @@ msgstr ""
177
177
178
178
#: ../../library/gc.rst:130
179
179
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; "
182
182
"extension types which do refer to other objects but do not support garbage "
183
183
"collection will not be found."
184
184
msgstr ""
@@ -195,8 +195,8 @@ msgstr ""
195
195
msgid ""
196
196
"Care must be taken when using objects returned by :func:`get_referrers` "
197
197
"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."
200
200
msgstr ""
201
201
202
202
#: ../../library/gc.rst:146
@@ -208,13 +208,13 @@ msgstr ""
208
208
#: ../../library/gc.rst:151
209
209
msgid ""
210
210
"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 "
213
213
"objects actually directly reachable. :c:member:`~PyTypeObject.tp_traverse` "
214
214
"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."
218
218
msgstr ""
219
219
220
220
#: ../../library/gc.rst:159
@@ -243,8 +243,8 @@ msgstr ""
243
243
msgid ""
244
244
"Freeze all the objects tracked by gc - move them to a permanent generation "
245
245
"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 "
248
248
"allocation which can cause copy-on-write too so it's advised to disable gc "
249
249
"in parent process and freeze before fork and enable gc in child process."
250
250
msgstr ""
@@ -269,35 +269,35 @@ msgstr ""
269
269
msgid ""
270
270
"A list of objects which the collector found to be unreachable but could not "
271
271
"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."
274
274
msgstr ""
275
275
276
276
#: ../../library/gc.rst:244
277
277
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."
280
280
msgstr ""
281
281
282
282
#: ../../library/gc.rst:247
283
283
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."
288
288
msgstr ""
289
289
290
290
#: ../../library/gc.rst:253
291
291
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."
294
294
msgstr ""
295
295
296
296
#: ../../library/gc.rst:259
297
297
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*."
301
301
msgstr ""
302
302
303
303
#: ../../library/gc.rst:263
@@ -314,8 +314,8 @@ msgstr ""
314
314
315
315
#: ../../library/gc.rst:269
316
316
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:"
319
319
msgstr ""
320
320
321
321
#: ../../library/gc.rst:272
@@ -381,13 +381,13 @@ msgstr ""
381
381
382
382
#: ../../library/gc.rst:319
383
383
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."
386
386
msgstr ""
387
387
388
388
#: ../../library/gc.rst:325
389
389
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 | "
392
392
"DEBUG_SAVEALL``)."
393
393
msgstr ""
0 commit comments