@@ -13,7 +13,7 @@ msgid ""
13
13
msgstr ""
14
14
"Project-Id-Version : Python 3.12\n "
15
15
"Report-Msgid-Bugs-To : \n "
16
- "POT-Creation-Date : 2023-10-20 14:13 +0000\n "
16
+ "POT-Creation-Date : 2023-12-01 14:14 +0000\n "
17
17
"PO-Revision-Date : 2021-06-28 00:50+0000\n "
18
18
"Last-Translator : Rafael Fontenelle <rffontenelle@gmail.com>, 2023\n "
19
19
"Language-Team : Portuguese (Brazil) (https://app.transifex.com/python-doc/ "
@@ -189,6 +189,9 @@ msgid ""
189
189
"to ``len(anyset)``. Raises a :exc:`SystemError` if *anyset* is not a :class:"
190
190
"`set`, :class:`frozenset`, or an instance of a subtype."
191
191
msgstr ""
192
+ "Retorna o comprimento de um objeto :class:`set` ou :class:`frozenset`. "
193
+ "Equivalente a ``len(anyset)``. Levanta um :exc:`SystemError` se *anyset* não "
194
+ "for um :class:`set`, :class:`frozenset`, ou uma instância de um subtipo."
192
195
193
196
#: ../../c-api/set.rst:119
194
197
msgid "Macro form of :c:func:`PySet_Size` without error checking."
@@ -203,6 +206,12 @@ msgid ""
203
206
"`SystemError` if *anyset* is not a :class:`set`, :class:`frozenset`, or an "
204
207
"instance of a subtype."
205
208
msgstr ""
209
+ "Retorna ``1`` se encontrado, ``0`` se não encontrado, e ``-1`` se um erro é "
210
+ "encontrado. Ao contrário do método Python :meth:`~object.__contains__`, esta "
211
+ "função não converte automaticamente conjuntos não hasheáveis em frozensets "
212
+ "temporários. Levanta um :exc:`TypeError` se a *key* não for hasheável. "
213
+ "Levanta :exc:`SystemError` se *anyset* não é um :class:`set`, :class:"
214
+ "`frozenset`, ou uma instância de um subtipo."
206
215
207
216
#: ../../c-api/set.rst:133
208
217
msgid ""
@@ -237,10 +246,17 @@ msgid ""
237
246
"Return ``1`` if found and removed, ``0`` if not found (no action taken), and "
238
247
"``-1`` if an error is encountered. Does not raise :exc:`KeyError` for "
239
248
"missing keys. Raise a :exc:`TypeError` if the *key* is unhashable. Unlike "
240
- "the Python :meth:`~set .discard` method, this function does not automatically "
241
- "convert unhashable sets into temporary frozensets. Raise :exc:`SystemError` "
242
- "if *set* is not an instance of :class:`set` or its subtype."
249
+ "the Python :meth:`~frozenset .discard` method, this function does not "
250
+ "automatically convert unhashable sets into temporary frozensets. Raise :exc:"
251
+ "`SystemError` if *set* is not an instance of :class:`set` or its subtype."
243
252
msgstr ""
253
+ "Retorna ``1`` se encontrado e removido, ``0`` se não encontrado (nenhuma "
254
+ "ação realizada) e ``-1`` se um erro for encontrado. Não levanta :exc:"
255
+ "`KeyError` para chaves ausentes. Levanta uma :exc:`TypeError` se a *key* não "
256
+ "for hasheável. Ao contrário do método Python :meth:`~frozenset.discard`, "
257
+ "esta função não converte automaticamente conjuntos não hasheáveis em "
258
+ "frozensets temporários. Levanta :exc:`SystemError` se *set* não é uma "
259
+ "instância de :class:`set` ou seu subtipo."
244
260
245
261
#: ../../c-api/set.rst:158
246
262
msgid ""
@@ -260,6 +276,9 @@ msgid ""
260
276
"``-1`` and raise :exc:`SystemError` if *set* is not an instance of :class:"
261
277
"`set` or its subtype."
262
278
msgstr ""
279
+ "Esvazia um conjunto existente de todos os elementos. Retorna ``0`` em caso "
280
+ "de sucesso. Retorna ``-1`` e levanta :exc:`SystemError` se *set* não for uma "
281
+ "instância de :class:`set` ou seu subtipo."
263
282
264
283
#: ../../c-api/set.rst:11
265
284
msgid "object"
@@ -271,7 +290,7 @@ msgstr "set"
271
290
272
291
#: ../../c-api/set.rst:11
273
292
msgid "frozenset"
274
- msgstr ""
293
+ msgstr "frozenset "
275
294
276
295
#: ../../c-api/set.rst:110
277
296
msgid "built-in function"
0 commit comments