- Notifications
You must be signed in to change notification settings - Fork395
Traducido extending/extending#453
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Merged
Uh oh!
There was an error while loading.Please reload this page.
Merged
Changes from1 commit
Commits
Show all changes
9 commits Select commitHold shift + click to select a range
308883f
Traducido extending/extendig
cmaureir648e19e
Merge remote-tracking branch 'upstream/3.8' into traduccion-extending…
cmaureir0bd35a1
Reemplazando devolver por retornar
cmaureirb92a793
Agregando nueva palabra y powrap
cmaureireafcfaa
Merge branch '3.8' into traduccion-extending-extending
cmaureirc7fdecc
Merge branch '3.8' into traduccion-extending-extending
cmaureirb8a82ea
Merge remote-tracking branch 'upstream/3.8' into traduccion-extending…
cmaureirb02fcb4
Agregando sugerencias extending/extending
cmaureirc676980
Merge branch '3.8' into traduccion-extending-extending
cmaureirFile filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
Agregando nueva palabra y powrap
- Loading branch information
Uh oh!
There was an error while loading.Please reload this page.
commitb92a793e1e9d7897f1d49e6a57dc77d89ab328e0
There are no files selected for viewing
3 changes: 2 additions & 1 deletiondict
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
40 changes: 20 additions & 20 deletionsextending/extending.po
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -222,12 +222,12 @@ msgid "" | ||
"the calling function can return ``NULL`` immediately (as we saw in the " | ||
"example)." | ||
msgstr "" | ||
":c:func:`PyArg_ParseTuple` retorna verdadero (distinto de cero) si todoslos" | ||
"argumentos tienen el tipo correcto y sus componentes se han almacenado en " | ||
"las variables cuyas direcciones se pasan. Retorna falso (cero) si se pasó " | ||
"una lista de argumentos no válidos. En el último caso, también genera una " | ||
"excepción apropiada para que la función de llamada pueda devolver ``NULL`` " | ||
cmaureir marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
"inmediatamente (como vimos en el ejemplo)." | ||
#: ../Doc/extending/extending.rst:126 | ||
msgid "Intermezzo: Errors and Exceptions" | ||
@@ -389,9 +389,9 @@ msgid "" | ||
"calls." | ||
msgstr "" | ||
"También tenga en cuenta que, con la importante excepción de :c:func:" | ||
"`PyArg_ParseTuple` y sus amigos, las funciones que retornan un estadoentero" | ||
"generalmente retornan un valor positivo o cero para el éxito y ``-1`` para " | ||
"el fracaso, como las llamadas al sistema Unix." | ||
#: ../Doc/extending/extending.rst:192 | ||
msgid "" | ||
@@ -554,10 +554,10 @@ msgid "" | ||
"``None``. You need this idiom to do so (which is implemented by the :c:" | ||
"macro:`Py_RETURN_NONE` macro)::" | ||
msgstr "" | ||
"Si tiene una función C que no retorna ningún argumento útil (una funciónque" | ||
"retorna :c:type:`void`), la función Python correspondiente debe devolver " | ||
"``None``. Necesita este modismo para hacerlo (que se implementa mediante la " | ||
"macro :c:macro:`Py_RETURN_NONE`)::" | ||
#: ../Doc/extending/extending.rst:310 | ||
msgid "" | ||
@@ -1101,9 +1101,8 @@ msgid "" | ||
msgstr "" | ||
"Reconoce un conjunto de unidades de formato similares a las reconocidas por :" | ||
"c:func:`PyArg_ParseTuple`, pero los argumentos (que son de entrada a la " | ||
"función, no de salida) no deben ser punteros, solo valores. Retorna un nuevo " | ||
"objeto Python, adecuado para regresar de una función C llamada desde Python." | ||
#: ../Doc/extending/extending.rst:814 | ||
msgid "" | ||
@@ -1421,9 +1420,9 @@ msgid "" | ||
"func:`PyLong_FromLong` maintains a cache of popular values and can return a " | ||
"reference to a cached item." | ||
msgstr "" | ||
"La mayoría de las funciones que retornan una referencia a un objeto pasande" | ||
"propiedad con la referencia. En particular, todas las funciones cuya función " | ||
"es crear un nuevo objeto, como :c:func:`PyLong_FromLong` y :c:func:" | ||
"`Py_BuildValue`, pasan la propiedad al receptor. Incluso si el objeto no es " | ||
"realmente nuevo, aún recibirá la propiedad de una nueva referencia a ese " | ||
"objeto. Por ejemplo, :c:func:`PyLong_FromLong` mantiene un caché de valores " | ||
@@ -1444,7 +1443,8 @@ msgstr "" | ||
"Sin embargo, la imagen es menos clara aquí, ya que algunas rutinas comunes " | ||
"son excepciones: :c:func:`PyTuple_GetItem`, :c:func:`PyList_GetItem`, :c:" | ||
"func:`PyDict_GetItem`, y :c:func:`PyDict_GetItemString` todas las " | ||
"referencias retornadas que tomaste prestadas de la tupla, lista o " | ||
"diccionario." | ||
#: ../Doc/extending/extending.rst:988 | ||
msgid "" | ||
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.