@@ -30,12 +30,18 @@ msgstr "Suporte a Coleta de Lixo Cíclica"
30
30
#: ../../c-api/gcsupport.rst:8
31
31
msgid ""
32
32
"Python's support for detecting and collecting garbage which involves "
33
- "circular references requires support from object types which are\" containers"
34
- "\" for other objects which may also be containers. Types which do not store "
35
- "references to other objects, or which only store references to atomic types "
36
- "(such as numbers or strings), do not need to provide any explicit support "
37
- "for garbage collection."
38
- msgstr ""
33
+ "circular references requires support from object types which are "
34
+ "\" containers\" for other objects which may also be containers. Types which "
35
+ "do not store references to other objects, or which only store references to "
36
+ "atomic types (such as numbers or strings), do not need to provide any "
37
+ "explicit support for garbage collection."
38
+ msgstr ""
39
+ "O suporte do Python para detectar e coletar o lixo, que envolve referencias "
40
+ "circulares, requer suporte dos tipos de objetos que são\" contêiners\" para "
41
+ "outros objetos que também podem ser contêiners. Tipos que não armazenam "
42
+ "referências a outros tipos de objetos, ou que apenas armazenam referências a "
43
+ "tipos atômicos (como números ou strings), não precisam fornecer nenhum "
44
+ "suporte explicito para coleta de lixo."
39
45
40
46
#: ../../c-api/gcsupport.rst:15
41
47
msgid ""
@@ -119,17 +125,23 @@ msgid ""
119
125
"Similarly, the deallocator for the object must conform to a similar pair of "
120
126
"rules:"
121
127
msgstr ""
128
+ "Da mesma forma, o desalocador para o objeto deve estar em conformidade com "
129
+ "regras semelhantes:"
122
130
123
131
#: ../../c-api/gcsupport.rst:75
124
132
msgid ""
125
133
"Before fields which refer to other containers are invalidated, :c:func:"
126
134
"`PyObject_GC_UnTrack` must be called."
127
135
msgstr ""
136
+ "Antes que os campos que fazer referência a outros containers sejam "
137
+ "invalidados, :c:func:`PyObject_GC_UnTrack` deve ser chamado."
128
138
129
139
#: ../../c-api/gcsupport.rst:78
130
140
msgid ""
131
141
"The object's memory must be deallocated using :c:func:`PyObject_GC_Del`."
132
142
msgstr ""
143
+ "A memória destinada ao objeto deve ser desalocada usando :c:func:"
144
+ "`PyObject_GC_Del`."
133
145
134
146
#: ../../c-api/gcsupport.rst:83
135
147
msgid ""