@@ -127,10 +127,10 @@ msgid ""
127127"args tuple and kwargs dict anyway, then there is no point in implementing "
128128"vectorcall."
129129msgstr ""
130- "Uma classe não deve implementar chamadas de vetores se for mais lento que "
131- "*tp_call*. Por exemplo, se o chamador precisa converter os argumentos para "
132- "uma tupla args e um dicionário kwargs de qualquer forma, então não é "
133- "necessário implementar chamada de vetor ."
130+ "Uma classe não deve implementar vectorcall se for mais lento que *tp_call*. "
131+ "Por exemplo, se o chamador precisa converter os argumentos para uma tupla "
132+ "args e um dicionário kwargs de qualquer forma, então não é necessário "
133+ "implementar vectorcall ."
134134
135135#: ../../c-api/call.rst:65
136136msgid ""
@@ -140,11 +140,11 @@ msgid ""
140140"*vectorcallfunc* appears. This is a pointer to a function with the following "
141141"signature:"
142142msgstr ""
143- "Classes podem implementar o protocolo de chamada de vetor ativando o "
144- "sinalizador : const:`Py_TPFLAGS_HAVE_VECTORCALL` e configurando :c:member:"
145- "`~PyTypeObject. tp_vectorcall_offset` para o offset dentro da estrutura do "
146- "objeto onde uma *vectorcallfunc* aparece. Este é um ponteiro para uma função "
147- "com a seguinte assinatura:"
143+ "Classes podem implementar o protocolo vectorcall ativando o sinalizador : "
144+ "const:`Py_TPFLAGS_HAVE_VECTORCALL` e configurando :c:member:`~PyTypeObject. "
145+ "tp_vectorcall_offset` para o offset dentro da estrutura do objeto onde uma "
146+ "*vectorcallfunc* aparece. Este é um ponteiro para uma função com a seguinte "
147+ "assinatura:"
148148
149149#: ../../c-api/call.rst:73
150150msgid "*callable* is the object being called."
@@ -172,10 +172,12 @@ msgid ""
172172":const:`PY_VECTORCALL_ARGUMENTS_OFFSET` flag. To get the actual number of "
173173"positional arguments from *nargsf*, use :c:func:`PyVectorcall_NARGS`."
174174msgstr ""
175+ "Sinalizador :const:`PY_VECTORCALL_ARGUMENTS_OFFSET`. Para obter o número "
176+ "real de argumentos posicionais de *nargsf*, use :c:func:`PyVectorcall_NARGS`."
175177
176178#: ../../c-api/call.rst:85
177179msgid "*kwnames* is a tuple containing the names of the keyword arguments;"
178- msgstr "*kwnames* é uma tupla contendo os nomes dos argumentos-chave ;"
180+ msgstr "*kwnames* é uma tupla contendo os nomes dos argumentos nomeados ;"
179181
180182#: ../../c-api/call.rst:82
181183msgid ""
@@ -185,7 +187,7 @@ msgid ""
185187msgstr ""
186188"em outras palavras, as chaves do dicionário kwargs. Estes nomes devem ser "
187189"strings (instâncias de ``str`` ou uma subclasse) e eles devem ser únicos. Se "
188- "não existem argumentos-chave , então *kwnames* deve então ser *NULL*."
190+ "não existem argumentos nomeados , então *kwnames* deve então ser *NULL*."
189191
190192#: ../../c-api/call.rst:89
191193msgid ""
@@ -194,7 +196,7 @@ msgid ""
194196"argument 1 (not 0) in the allocated vector. The callee must restore the "
195197"value of ``args[-1]`` before returning."
196198msgstr ""
197- "Se essa flag é definida em um argumento de chamada de vetor *nargsf*, deve "
199+ "Se esse sinalizador é definido em um argumento *nargsf* do vectorcall , deve "
198200"ser permitido ao chamado temporariamente mudar ``args[-1]``. Em outras "
199201"palavras, *args* aponta para o argumento 1 (não 0) no vetor alocado. O "
200202"chamado deve restaurar o valor de ``args[-1]`` antes de retornar."
@@ -303,7 +305,7 @@ msgid ""
303305"Call *callable*'s :c:type:`vectorcallfunc` with positional and keyword "
304306"arguments given in a tuple and dict, respectively."
305307msgstr ""
306- "Chame o :c:type:`vectorcallfunc` de *callable* com argumentos posicionais e "
308+ "Chama o :c:type:`vectorcallfunc` de *callable* com argumentos posicionais e "
307309"nomeados dados em uma tupla e dicionário, respectivamente."
308310
309311#: ../../c-api/call.rst:166
@@ -315,8 +317,8 @@ msgid ""
315317msgstr ""
316318"Esta é uma função especializada, feita para ser colocada no slot :c:member:"
317319"`~PyTypeObject.tp_call` ou usada em uma implementação de ``tp_call``. Ela "
318- "não checa a flag :const:`Py_TPFLAGS_HAVE_VECTORCALL` e não retorna para "
319- "``tp_call``."
320+ "não verifica o sinalizador :const:`Py_TPFLAGS_HAVE_VECTORCALL` e não retorna "
321+ "para ``tp_call``."
320322
321323#: ../../c-api/call.rst:177
322324msgid "Object Calling API"
@@ -340,7 +342,7 @@ msgid ""
340342"The following table summarizes the available functions; please see "
341343"individual documentation for details."
342344msgstr ""
343- "A tabela a seguir sumariza as funções disponíveis; por favor, veja a "
345+ "A tabela a seguir resume as funções disponíveis; por favor, veja a "
344346"documentação individual para detalhes."
345347
346348#: ../../c-api/call.rst:189
@@ -468,7 +470,7 @@ msgid ""
468470"Call a callable Python object *callable*, with arguments given by the tuple "
469471"*args*, and named arguments given by the dictionary *kwargs*."
470472msgstr ""
471- "Chame um objeto Python chamável de *callable*, com argumentos dados pela "
473+ "Chama um objeto Python chamável de *callable*, com argumentos dados pela "
472474"tupla *args*, e argumentos nomeados dados pelo dicionário *kwargs*."
473475
474476#: ../../c-api/call.rst:224
@@ -488,7 +490,7 @@ msgid ""
488490"Return the result of the call on success, or raise an exception and return "
489491"*NULL* on failure."
490492msgstr ""
491- "Retorne o resultado da chamada em sucesso, ou levante uma exceção e retorne "
493+ "Retorna o resultado da chamada em sucesso, ou levanta uma exceção e retorna "
492494"*NULL* em caso de falha."
493495
494496#: ../../c-api/call.rst:230
@@ -503,23 +505,23 @@ msgid ""
503505"Call a callable Python object *callable* without any arguments. It is the "
504506"most efficient way to call a callable Python object without any argument."
505507msgstr ""
506- "Chame um objeto Python chamável de *callable* sem nenhum argumento. É o "
508+ "Chama um objeto Python chamável de *callable* sem nenhum argumento. É o "
507509"jeito mais eficiente de chamar um objeto Python sem nenhum argumento."
508510
509511#: ../../c-api/call.rst:247
510512msgid ""
511513"Call a callable Python object *callable* with exactly 1 positional argument "
512514"*arg* and no keyword arguments."
513515msgstr ""
514- "Chame um objeto Python chamável de *callable* com exatamente 1 argumento "
516+ "Chama um objeto Python chamável de *callable* com exatamente 1 argumento "
515517"posicional *arg* e nenhum argumento nomeado."
516518
517519#: ../../c-api/call.rst:258
518520msgid ""
519521"Call a callable Python object *callable*, with arguments given by the tuple "
520522"*args*. If no arguments are needed, then *args* can be *NULL*."
521523msgstr ""
522- "Chame um objeto Python chamável de *callable* com argumentos dados pela "
524+ "Chama um objeto Python chamável de *callable* com argumentos dados pela "
523525"tupla *args*. Se nenhum argumento é necessário, *args* pode ser *NULL*."
524526
525527#: ../../c-api/call.rst:264 ../../c-api/call.rst:276
@@ -533,7 +535,7 @@ msgid ""
533535"style format string. The format can be *NULL*, indicating that no arguments "
534536"are provided."
535537msgstr ""
536- "Chame um objeto Python chamável de *callable*, com um número variável de "
538+ "Chama um objeto Python chamável de *callable*, com um número variável de "
537539"argumentos C. Os argumentos C são descritos usando uma string de estilo no "
538540"formato :c:func:`Py_BuildValue`. O formato pode ser *NULL*, indicando que "
539541"nenhum argumento foi provido."
@@ -589,7 +591,7 @@ msgid ""
589591"`PyObject *` arguments. The arguments are provided as a variable number of "
590592"parameters followed by *NULL*."
591593msgstr ""
592- "Chame um objeto Python chamável de *callable*, com um número variável de "
594+ "Chama um objeto Python chamável de *callable*, com um número variável de "
593595"argumentos :c:expr:`PyObject *`. Os argumentos são providos como um número "
594596"variável de parâmetros seguidos por um *NULL*."
595597
@@ -664,7 +666,7 @@ msgid ""
664666"If the object has the :const:`Py_TPFLAGS_METHOD_DESCRIPTOR` feature, this "
665667"will call the unbound method object with the full *args* vector as arguments."
666668msgstr ""
667- "Se o objeto tem a feature :const:`Py_TPFLAGS_METHOD_DESCRIPTOR`, isso irá "
669+ "Se o objeto tem o recurso :const:`Py_TPFLAGS_METHOD_DESCRIPTOR`, isso irá "
668670"chamar o objeto de método não vinculado com o vetor *args* inteiro como "
669671"argumentos."
670672
0 commit comments