You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
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
"Numeric values are only given for projects which cannot use the constant "
"identifiers."
msgstr ""
"Los valores numéricos solo se proporcionan para proyectos que no pueden usar "
"los identificadores constantes."
#: ../Doc/c-api/object.rst:42
msgid "In CPython, all of these constants are :term:`immortal`."
msgstr ""
msgstr "En CPython, todas estas constantes son :term:`inmortales <immortal>`."
#: ../Doc/c-api/object.rst:47
msgid ""
"Similar to :c:func:`Py_GetConstant`, but return a :term:`borrowed reference`."
msgstr ""
"Similar a :c:func:`Py_GetConstant`, pero retorna una :term:`referencia prestada`."
#: ../Doc/c-api/object.rst:50
msgid ""
"This function is primarily intended for backwards compatibility: using :c:"
"func:`Py_GetConstant` is recommended for new code."
msgstr ""
"Esta función está destinada principalmente para compatibilidad hacia atrás: "
"se recomienda usar :c:func:`Py_GetConstant` para código nuevo."
#: ../Doc/c-api/object.rst:53
msgid ""
"The reference is borrowed from the interpreter, and is valid until the "
"interpreter finalization."
msgstr ""
"La referencia es prestada del intérprete, y es válida hasta la finalización "
"del intérprete."
#: ../Doc/c-api/object.rst:61
msgid ""
Expand All
@@ -157,25 +164,26 @@ msgstr ""
"está implementada para la combinación de tipos dada."
#: ../Doc/c-api/object.rst:67
#, fuzzy
msgid ""
"Properly handle returning :c:data:`Py_NotImplemented` from within a C "
"function (that is, create a new :term:`strong reference` to :const:"
"`NotImplemented` and return it)."
msgstr ""
"Maneja adecuadamente el retorno :c:data:`Py_NotImplemented` desde una "
"función C (es decir,incremente el recuento de referencias de"
"*NotImplemented* y lo retorna)."
"Maneja adecuadamente el retornode:c:data:`Py_NotImplemented` desde una "
"función C (es decir,crea una nueva :term:`referencia fuerte` a :const:"
"`NotImplemented` y lo retorna)."
#: ../Doc/c-api/object.rst:74
msgid ""
"Flag to be used with multiple functions that print the object (like :c:func:"
"`PyObject_Print` and :c:func:`PyFile_WriteObject`). If passed, these "
"function would use the :func:`str` of the object instead of the :func:`repr`."
msgstr ""
"Bandera (*flag*) para usar con múltiples funciones que imprimen el objeto "
"(como :c:func:`PyObject_Print` y :c:func:`PyFile_WriteObject`). Si se pasa, "
"estas funciones usarían el :func:`str` del objeto en lugar del :func:`repr`."
#: ../Doc/c-api/object.rst:82
#, fuzzy
msgid ""
"Print an object *o*, on file *fp*. Returns ``-1`` on error. The flags "
"argument is used to enable certain printing options. The only option "
Expand All
@@ -184,19 +192,18 @@ msgid ""
msgstr ""
"Imprime un objeto *o*, en el archivo *fp*. Retorna ``-1`` en caso de error. "
"El argumento de las banderas se usa para habilitar ciertas opciones de "
"impresión. La única opción actualmente admitida es :const:`Py_PRINT_RAW`; si "
"impresión. La única opción actualmente admitida es :c:macro:`Py_PRINT_RAW`; si "
"se proporciona, se escribe :func:`str` del objeto en lugar de :func:`repr`."
#: ../Doc/c-api/object.rst:90
#, fuzzy
msgid ""
"Returns ``1`` if *o* has the attribute *attr_name*, and ``0`` otherwise. "
"This is equivalent to the Python expression ``hasattr(o, attr_name)``. On "
"failure, return ``-1``."
msgstr ""
"Retorna ``1`` si *o* tiene el atributo *attr_name*, y ``0`` en caso "
"contrario. Esto es equivalente a la expresión de Python ``hasattr(o, "
"attr_name)``.Esta función siempre finaliza exitosamente."
"attr_name)``.En caso de error, retorna ``-1``."
#: ../Doc/c-api/object.rst:99
msgid ""
Expand All
@@ -206,26 +213,25 @@ msgid ""
msgstr ""
#: ../Doc/c-api/object.rst:108
#, fuzzy
msgid ""
"Returns ``1`` if *o* has the attribute *attr_name*, and ``0`` otherwise. "
"This function always succeeds."
msgstr ""
"Retorna ``1`` si *o* tiene el atributo *attr_name*, y ``0`` en caso "
"contrario. Esto es equivalente a la expresión de Python ``hasattr(o, "
"attr_name)``. Esta función siempre finaliza exitosamente."
"contrario. Esta función siempre tiene éxito."
#: ../Doc/c-api/object.rst:113
#, fuzzy
msgid ""
"Exceptions that occur when this calls :meth:`~object.__getattr__` and :meth:"
"`~object.__getattribute__` methods are silently ignored. For proper error "
"handling, use :c:func:`PyObject_HasAttrWithError`, :c:func:"
"`PyObject_GetOptionalAttr` or :c:func:`PyObject_GetAttr` instead."
msgstr ""
"Tenga en cuenta que las excepciones que se producen al llamar a los métodos "
"a :meth:`__getattr__` y :meth:`__getattribute__` se suprimirán. Para obtener "
"informe de errores, utilice :c:func:`PyObject_GetAttr()` alternativamente."
"Las excepciones que ocurren cuando esto llama a los métodos :meth:"
"`~object.__getattr__` y :meth:`~object.__getattribute__` se ignoran "
"silenciosamente. Para un manejo adecuado de errores, use :c:func:"
"`PyObject_HasAttrWithError`, :c:func:`PyObject_GetOptionalAttr` o :c:func:"
"`PyObject_GetAttr` en su lugar."
#: ../Doc/c-api/object.rst:121
msgid ""
Expand Down
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.