[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/sofide/python-docs-es/fix_create_issue_script/c-api/method.po [Back]  [Original]

# Copyright (C) 2001-2020, Python Software Foundation
# This file is distributed under the same license as the Python package.
# Maintained by the python-doc-es workteam.
# docs-es@python.org /
# https://mail.python.org/mailman3/lists/docs-es.python.org/
# Check https://github.com/python/python-docs-es/blob/3.8/TRANSLATORS to
# get the list of volunteers
#
msgid ""
msgstr ""
"Project-Id-Version: Python 3.8\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-10-12 19:43+0200\n"
"PO-Revision-Date: 2021-08-01 20:26+0200\n"
"Last-Translator: Cristin Maureira-Fredes \n"
"Language: es\n"
"Language-Team: python-doc-es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.13.0\n"

#: ../Doc/c-api/method.rst:6
msgid "Instance Method Objects"
msgstr "Objetos de mtodo de instancia"

#: ../Doc/c-api/method.rst:10
#, fuzzy
msgid ""
"An instance method is a wrapper for a :c:type:`PyCFunction` and the new way "
"to bind a :c:type:`PyCFunction` to a class object. It replaces the former "
"call ``PyMethod_New(func, NULL, class)``."
msgstr ""
"Un mtodo de instancia es un contenedor para una :c:data:`PyCFunction` y la "
"nueva forma de vincular una :c:data:`PyCFunction` a un objeto de clase. "
"Reemplaza la llamada anterior ``PyMethod_New (func, NULL, class)``."

#: ../Doc/c-api/method.rst:17
msgid ""
"This instance of :c:type:`PyTypeObject` represents the Python instance "
"method type. It is not exposed to Python programs."
msgstr ""
"Esta instancia de :c:type:`PyTypeObject` representa el tipo de mtodo de "
"instancia de Python. No est expuesto a los programas de Python."

#: ../Doc/c-api/method.rst:23
msgid ""
"Return true if *o* is an instance method object (has type :c:data:"
"`PyInstanceMethod_Type`).  The parameter must not be ``NULL``. This function "
"always succeeds."
msgstr ""
"Retorna verdadero si *o* es un objeto de mtodo de instancia (tiene tipo :c:"
"data:`PyInstanceMethod_Type`). El parmetro no debe ser ``NULL``. Esta "
"funcin siempre finaliza con xito."

#: ../Doc/c-api/method.rst:30
#, fuzzy
msgid ""
"Return a new instance method object, with *func* being any callable object. "
"*func* is the function that will be called when the instance method is "
"called."
msgstr ""
"Retorna un nuevo objeto de mtodo de instancia, con *func* siendo cualquier "
"objeto invocable *func* es la funcin que se llamar cuando se llame al "
"mtodo de instancia."

#: ../Doc/c-api/method.rst:37
msgid "Return the function object associated with the instance method *im*."
msgstr "Retorna el objeto de funcin asociado con el mtodo de instancia *im*."

#: ../Doc/c-api/method.rst:42
msgid ""
"Macro version of :c:func:`PyInstanceMethod_Function` which avoids error "
"checking."
msgstr ""
"Versin macro de :c:func:`PyInstanceMethod_Function` que evita la "
"comprobacin de errores."

#: ../Doc/c-api/method.rst:48
msgid "Method Objects"
msgstr "Objetos mtodo"

#: ../Doc/c-api/method.rst:52
msgid ""
"Methods are bound function objects. Methods are always bound to an instance "
"of a user-defined class. Unbound methods (methods bound to a class object) "
"are no longer available."
msgstr ""
"Los mtodos son objetos de funcin enlazados. Los mtodos siempre estn "
"vinculados a una instancia de una clase definida por el usuario. Los mtodos "
"no vinculados (mtodos vinculados a un objeto de clase) ya no estn "
"disponibles."

#: ../Doc/c-api/method.rst:61
msgid ""
"This instance of :c:type:`PyTypeObject` represents the Python method type.  "
"This is exposed to Python programs as ``types.MethodType``."
msgstr ""
"Esta instancia de :c:type:`PyTypeObject` representa el tipo de mtodo "
"Python. Esto est expuesto a los programas de Python como ``types."
"MethodType``."

#: ../Doc/c-api/method.rst:67
msgid ""
"Return true if *o* is a method object (has type :c:data:`PyMethod_Type`).  "
"The parameter must not be ``NULL``.  This function always succeeds."
msgstr ""
"Retorna verdadero si *o* es un objeto de mtodo (tiene tipo :c:data:"
"`PyMethod_Type`). El parmetro no debe ser ``NULL``. Esta funcin siempre "
"finaliza con xito."

#: ../Doc/c-api/method.rst:73
msgid ""
"Return a new method object, with *func* being any callable object and *self* "
"the instance the method should be bound. *func* is the function that will be "
"called when the method is called. *self* must not be ``NULL``."
msgstr ""
"Retorna un nuevo objeto de mtodo, con *func* como cualquier objeto "
"invocable y *self* la instancia en la que se debe vincular el mtodo. *func* "
"es la funcin que se llamar cuando se llame al mtodo. *self* no debe ser "
"``NULL``."

#: ../Doc/c-api/method.rst:80
msgid "Return the function object associated with the method *meth*."
msgstr "Retorna el objeto de funcin asociado con el mtodo *meth*."

#: ../Doc/c-api/method.rst:85
msgid ""
"Macro version of :c:func:`PyMethod_Function` which avoids error checking."
msgstr ""
"Versin macro de :c:func:`PyMethod_Function` que evita la comprobacin de "
"errores."

#: ../Doc/c-api/method.rst:90
msgid "Return the instance associated with the method *meth*."
msgstr "Retorna la instancia asociada con el mtodo *meth*."

#: ../Doc/c-api/method.rst:95
msgid "Macro version of :c:func:`PyMethod_Self` which avoids error checking."
msgstr ""
"Versin macro de :c:func:`PyMethod_Self` que evita la comprobacin de "
"errores."

#: ../Doc/c-api/method.rst:8 ../Doc/c-api/method.rst:50
#, fuzzy
msgid "object"
msgstr "Objetos mtodo"

#: ../Doc/c-api/method.rst:8
#, fuzzy
msgid "instancemethod"
msgstr "Objetos de mtodo de instancia"

#: ../Doc/c-api/method.rst:50
#, fuzzy
msgid "method"
msgstr "Objetos mtodo"

#: ../Doc/c-api/method.rst:59
msgid "MethodType (in module types)"
msgstr ""

Web Proxy Viewer  |  New URL  |  Original Page