@@ -14,7 +14,8 @@ msgstr ""
14
14
"POT-Creation-Date :2020-04-10 22:51+0000\n "
15
15
"PO-Revision-Date :2019-09-01 03:23+0000\n "
16
16
"Last-Translator :Livia Cavalcanti <livia.juliao@ccc.ufcg.edu.br>, 2019\n "
17
- "Language-Team :Portuguese (Brazil) (https://www.transifex.com/python-doc/teams/5390/pt_BR/)\n "
17
+ "Language-Team :Portuguese (Brazil) (https://www.transifex.com/python-doc/ "
18
+ "teams/5390/pt_BR/)\n "
18
19
"Language :pt_BR\n "
19
20
"MIME-Version :1.0\n "
20
21
"Content-Type :text/plain; charset=UTF-8\n "
@@ -31,33 +32,32 @@ msgid ""
31
32
"provides the ability to disable the collector, tune the collection "
32
33
"frequency, and set debugging options. It also provides access to "
33
34
"unreachable objects that the collector found but cannot free. Since the "
34
- "collector supplements the reference counting already used in Python, you can"
35
- " disable the collector if you are sure your program does not create "
36
- "reference cycles. Automatic collection can be disabled by calling "
37
- "``gc.disable()``. To debug a leaking program call "
38
- "``gc.set_debug(gc.DEBUG_LEAK)``. Notice that this includes "
39
- "``gc.DEBUG_SAVEALL``, causing garbage-collected objects to be saved in "
40
- "gc.garbage for inspection."
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 reference "
37
+ "cycles. Automatic collection can be disabled by calling ``gc.disable()``. "
38
+ "To debug a leaking program call ``gc.set_debug(gc.DEBUG_LEAK)``. Notice that "
39
+ "this includes ``gc.DEBUG_SAVEALL``, causing garbage-collected objects to be "
40
+ "saved in gc.garbage for inspection."
41
41
msgstr ""
42
42
"Este módulo fornece uma interface para o opcional garbage collector. Ele "
43
43
"disponibiliza a habilidade de desabilitar o collector, ajustar a frequência "
44
44
"da coleção, e configurar as opções de depuração. Ele também fornece acesso "
45
45
"para objetos inacessíveis que o collector encontra mas não pode\" limpar\" . "
46
46
"Como o collector complementa a contagem de referência já usada em Python, "
47
- "você pode desabilitar o collector se você tem certeza que o seu programa não"
48
- " cria ciclos de referências. A coleta automática pode ser desabilitada pela "
49
- "chamada ``gc.disable()``. Para depurar um programa vazando, chame "
50
- "``gc. set_debug(gc.DEBUG_LEAK)``. Perceba que isto inclui "
51
- "``gc.DEBUG_SAVEALL``, fazendo com que objetos coletados pelo garbage-"
52
- "collector sejam salvos para inspeção em gc.garbage."
47
+ "você pode desabilitar o collector se você tem certeza que o seu programa não "
48
+ "cria ciclos de referências. A coleta automática pode ser desabilitada pela "
49
+ "chamada ``gc.disable()``. Para depurar um programa vazando, chame``gc. "
50
+ "set_debug(gc.DEBUG_LEAK)``. Perceba que isto inclui ``gc.DEBUG_SAVEALL``, "
51
+ "fazendo com que objetos coletados pelo garbage-collector sejam salvos para "
52
+ "inspeção em gc.garbage."
53
53
54
54
#: ../../library/gc.rst:23
55
55
msgid "The :mod:`gc` module provides the following functions:"
56
- msgstr ""
56
+ msgstr "O módulo :mod:`gc` fornece as seguintes funções: "
57
57
58
58
#: ../../library/gc.rst:28
59
59
msgid "Enable automatic garbage collection."
60
- msgstr ""
60
+ msgstr "Habilita a coleta de lixo automática. "
61
61
62
62
#: ../../library/gc.rst:33
63
63
msgid "Disable automatic garbage collection."
@@ -163,8 +163,8 @@ msgstr ""
163
163
164
164
#: ../../library/gc.rst:125
165
165
msgid ""
166
- "Return the list of objects that directly refer to any of objs. This function"
167
- " will only locate those containers which support garbage collection; "
166
+ "Return the list of objects that directly refer to any of objs. This function "
167
+ "will only locate those containers which support garbage collection; "
168
168
"extension types which do refer to other objects but do not support garbage "
169
169
"collection will not be found."
170
170
msgstr ""
@@ -181,20 +181,20 @@ msgstr ""
181
181
msgid ""
182
182
"Care must be taken when using objects returned by :func:`get_referrers` "
183
183
"because some of them could still be under construction and hence in a "
184
- "temporarily invalid state. Avoid using :func:`get_referrers` for any purpose"
185
- " other than debugging."
184
+ "temporarily invalid state. Avoid using :func:`get_referrers` for any purpose "
185
+ "other than debugging."
186
186
msgstr ""
187
187
188
188
#: ../../library/gc.rst:143
189
189
msgid ""
190
190
"Return a list of objects directly referred to by any of the arguments. The "
191
- "referents returned are those objects visited by the arguments' C-level "
192
- ":c: member:`~PyTypeObject.tp_traverse` methods (if any), and may not be all "
191
+ "referents returned are those objects visited by the arguments' C-level:c: "
192
+ "member:`~PyTypeObject.tp_traverse` methods (if any), and may not be all "
193
193
"objects actually directly reachable. :c:member:`~PyTypeObject.tp_traverse` "
194
194
"methods are supported only by objects that support garbage collection, and "
195
- "are only required to visit objects that may be involved in a cycle. So, for"
196
- " example, if an integer is directly reachable from an argument, that integer"
197
- " object may or may not appear in the result list."
195
+ "are only required to visit objects that may be involved in a cycle. So, for "
196
+ "example, if an integer is directly reachable from an argument, that integer "
197
+ "object may or may not appear in the result list."
198
198
msgstr ""
199
199
200
200
#: ../../library/gc.rst:154
@@ -211,8 +211,8 @@ msgstr ""
211
211
msgid ""
212
212
"Freeze all the objects tracked by gc - move them to a permanent generation "
213
213
"and ignore all the future collections. This can be used before a POSIX "
214
- "fork() call to make the gc copy-on-write friendly or to speed up collection."
215
- " Also collection before a POSIX fork() call may free pages for future "
214
+ "fork() call to make the gc copy-on-write friendly or to speed up collection. "
215
+ "Also collection before a POSIX fork() call may free pages for future "
216
216
"allocation which can cause copy-on-write too so it's advised to disable gc "
217
217
"in master process and freeze before fork and enable gc in child process."
218
218
msgstr ""
@@ -237,35 +237,35 @@ msgstr ""
237
237
msgid ""
238
238
"A list of objects which the collector found to be unreachable but could not "
239
239
"be freed (uncollectable objects). Starting with Python 3.4, this list "
240
- "should be empty most of the time, except when using instances of C extension"
241
- " types with a non-``NULL`` ``tp_del`` slot."
240
+ "should be empty most of the time, except when using instances of C extension "
241
+ "types with a non-``NULL`` ``tp_del`` slot."
242
242
msgstr ""
243
243
244
244
#: ../../library/gc.rst:214
245
245
msgid ""
246
- "If :const:`DEBUG_SAVEALL` is set, then all unreachable objects will be added"
247
- " to this list rather than freed."
246
+ "If :const:`DEBUG_SAVEALL` is set, then all unreachable objects will be added "
247
+ "to this list rather than freed."
248
248
msgstr ""
249
249
250
250
#: ../../library/gc.rst:217
251
251
msgid ""
252
- "If this list is non-empty at :term:`interpreter shutdown`, a "
253
- ":exc: `ResourceWarning` is emitted, which is silent by default. If "
254
- ":const: `DEBUG_UNCOLLECTABLE` is set, in addition all uncollectable objects "
255
- "are printed."
252
+ "If this list is non-empty at :term:`interpreter shutdown`, a:exc: "
253
+ "`ResourceWarning` is emitted, which is silent by default. If:const: "
254
+ "`DEBUG_UNCOLLECTABLE` is set, in addition all uncollectable objects are "
255
+ "printed."
256
256
msgstr ""
257
257
258
258
#: ../../library/gc.rst:223
259
259
msgid ""
260
- "Following :pep:`442`, objects with a :meth:`__del__` method don't end up in "
261
- ": attr:`gc.garbage` anymore."
260
+ "Following :pep:`442`, objects with a :meth:`__del__` method don't end up in: "
261
+ "attr:`gc.garbage` anymore."
262
262
msgstr ""
263
263
264
264
#: ../../library/gc.rst:229
265
265
msgid ""
266
- "A list of callbacks that will be invoked by the garbage collector before and"
267
- " after collection. The callbacks will be called with two arguments, *phase*"
268
- " and *info*."
266
+ "A list of callbacks that will be invoked by the garbage collector before and "
267
+ "after collection. The callbacks will be called with two arguments, *phase* "
268
+ "and *info*."
269
269
msgstr ""
270
270
271
271
#: ../../library/gc.rst:233
@@ -282,8 +282,8 @@ msgstr ""
282
282
283
283
#: ../../library/gc.rst:239
284
284
msgid ""
285
- "*info* is a dict providing more information for the callback. The following"
286
- " keys are currently defined:"
285
+ "*info* is a dict providing more information for the callback. The following "
286
+ "keys are currently defined:"
287
287
msgstr ""
288
288
289
289
#: ../../library/gc.rst:242
@@ -349,13 +349,13 @@ msgstr ""
349
349
350
350
#: ../../library/gc.rst:289
351
351
msgid ""
352
- "When set, all unreachable objects found will be appended to *garbage* rather"
353
- " than being freed. This can be useful for debugging a leaking program."
352
+ "When set, all unreachable objects found will be appended to *garbage* rather "
353
+ "than being freed. This can be useful for debugging a leaking program."
354
354
msgstr ""
355
355
356
356
#: ../../library/gc.rst:295
357
357
msgid ""
358
- "The debugging flags necessary for the collector to print information about a"
359
- " leaking program (equal to ``DEBUG_COLLECTABLE | DEBUG_UNCOLLECTABLE | "
358
+ "The debugging flags necessary for the collector to print information about a "
359
+ "leaking program (equal to ``DEBUG_COLLECTABLE | DEBUG_UNCOLLECTABLE | "
360
360
"DEBUG_SAVEALL``)."
361
361
msgstr ""