python-docs-fr/c-api/call.po

594 lines
21 KiB
Plaintext
Raw Normal View History

2020-06-05 07:32:47 +00:00
# Copyright (C) 2001-2018, Python Software Foundation
# For licence information, see README file.
#
msgid ""
msgstr ""
"Project-Id-Version: Python 3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-05-31 18:36+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: FRENCH <traductions@lists.afpy.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:6
msgid "Call Protocol"
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:8
msgid ""
"CPython supports two different calling protocols: *tp_call* and vectorcall."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:12
msgid "The *tp_call* Protocol"
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:14
msgid ""
"Instances of classes that set :c:member:`~PyTypeObject.tp_call` are "
"callable. The signature of the slot is::"
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:19
msgid ""
"A call is made using a tuple for the positional arguments and a dict for the "
"keyword arguments, similarly to ``callable(*args, **kwargs)`` in Python "
"code. *args* must be non-NULL (use an empty tuple if there are no arguments) "
"but *kwargs* may be *NULL* if there are no keyword arguments."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:25
msgid ""
"This convention is not only used by *tp_call*: :c:member:`~PyTypeObject."
"tp_new` and :c:member:`~PyTypeObject.tp_init` also pass arguments this way."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:29
msgid ""
"To call an object, use :c:func:`PyObject_Call` or other :ref:`call API <capi-"
"call>`."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:36
msgid "The Vectorcall Protocol"
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:40
msgid ""
"The vectorcall protocol was introduced in :pep:`590` as an additional "
"protocol for making calls more efficient."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:43
msgid ""
"As rule of thumb, CPython will prefer the vectorcall for internal calls if "
"the callable supports it. However, this is not a hard rule. Additionally, "
"some third-party extensions use *tp_call* directly (rather than using :c:"
"func:`PyObject_Call`). Therefore, a class supporting vectorcall must also "
"implement :c:member:`~PyTypeObject.tp_call`. Moreover, the callable must "
"behave the same regardless of which protocol is used. The recommended way to "
"achieve this is by setting :c:member:`~PyTypeObject.tp_call` to :c:func:"
"`PyVectorcall_Call`. This bears repeating:"
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:57
msgid ""
"A class supporting vectorcall **must** also implement :c:member:"
"`~PyTypeObject.tp_call` with the same semantics."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:60
msgid ""
"A class should not implement vectorcall if that would be slower than "
"*tp_call*. For example, if the callee needs to convert the arguments to an "
"args tuple and kwargs dict anyway, then there is no point in implementing "
"vectorcall."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:65
msgid ""
"Classes can implement the vectorcall protocol by enabling the :const:"
"`Py_TPFLAGS_HAVE_VECTORCALL` flag and setting :c:member:`~PyTypeObject."
"tp_vectorcall_offset` to the offset inside the object structure where a "
"*vectorcallfunc* appears. This is a pointer to a function with the following "
"signature:"
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:73
msgid "*callable* is the object being called."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:75
msgid ""
"*args* is a C array consisting of the positional arguments followed by the"
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:75
msgid ""
"values of the keyword arguments. This can be *NULL* if there are no "
"arguments."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:79
msgid "*nargsf* is the number of positional arguments plus possibly the"
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:78
msgid ""
":const:`PY_VECTORCALL_ARGUMENTS_OFFSET` flag. To get the actual number of "
"positional arguments from *nargsf*, use :c:func:`PyVectorcall_NARGS`."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:85
msgid "*kwnames* is a tuple containing the names of the keyword arguments;"
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:82
msgid ""
"in other words, the keys of the kwargs dict. These names must be strings "
"(instances of ``str`` or a subclass) and they must be unique. If there are "
"no keyword arguments, then *kwnames* can instead be *NULL*."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:89
msgid ""
"If this flag is set in a vectorcall *nargsf* argument, the callee is allowed "
"to temporarily change ``args[-1]``. In other words, *args* points to "
"argument 1 (not 0) in the allocated vector. The callee must restore the "
"value of ``args[-1]`` before returning."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:94
msgid ""
"For :c:func:`PyObject_VectorcallMethod`, this flag means instead that "
"``args[0]`` may be changed."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:97
msgid ""
"Whenever they can do so cheaply (without additional allocation), callers are "
"encouraged to use :const:`PY_VECTORCALL_ARGUMENTS_OFFSET`. Doing so will "
"allow callables such as bound methods to make their onward calls (which "
"include a prepended *self* argument) very efficiently."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:102
msgid ""
"To call an object that implements vectorcall, use a :ref:`call API <capi-"
"call>` function as with any other callable. :c:func:`PyObject_Vectorcall` "
"will usually be most efficient."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:109
msgid ""
"In CPython 3.8, the vectorcall API and related functions were available "
"provisionally under names with a leading underscore: "
"``_PyObject_Vectorcall``, ``_Py_TPFLAGS_HAVE_VECTORCALL``, "
"``_PyObject_VectorcallMethod``, ``_PyVectorcall_Function``, "
"``_PyObject_CallOneArg``, ``_PyObject_CallMethodNoArgs``, "
"``_PyObject_CallMethodOneArg``. Additionally, ``PyObject_VectorcallDict`` "
"was available as ``_PyObject_FastCallDict``. The old names are still defined "
"as aliases of the new, non-underscored names."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:121
msgid "Recursion Control"
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:123
msgid ""
"When using *tp_call*, callees do not need to worry about :ref:`recursion "
"<recursion>`: CPython uses :c:func:`Py_EnterRecursiveCall` and :c:func:"
"`Py_LeaveRecursiveCall` for calls made using *tp_call*."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:128
msgid ""
"For efficiency, this is not the case for calls done using vectorcall: the "
"callee should use *Py_EnterRecursiveCall* and *Py_LeaveRecursiveCall* if "
"needed."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:134
msgid "Vectorcall Support API"
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:138
msgid ""
"Given a vectorcall *nargsf* argument, return the actual number of arguments. "
"Currently equivalent to::"
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:144
msgid ""
"However, the function ``PyVectorcall_NARGS`` should be used to allow for "
"future extensions."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:147
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:161
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:175
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:259
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:346
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:360
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:375
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:391
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:413
msgid "This function is not part of the :ref:`limited API <stable>`."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:153
msgid ""
"If *op* does not support the vectorcall protocol (either because the type "
"does not or because the specific instance does not), return *NULL*. "
"Otherwise, return the vectorcall function pointer stored in *op*. This "
"function never raises an exception."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:158
msgid ""
"This is mostly useful to check whether or not *op* supports vectorcall, "
"which can be done by checking ``PyVectorcall_Function(op) != NULL``."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:167
msgid ""
"Call *callable*'s :c:type:`vectorcallfunc` with positional and keyword "
"arguments given in a tuple and dict, respectively."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:170
msgid ""
"This is a specialized function, intended to be put in the :c:member:"
"`~PyTypeObject.tp_call` slot or be used in an implementation of ``tp_call``. "
"It does not check the :const:`Py_TPFLAGS_HAVE_VECTORCALL` flag and it does "
"not fall back to ``tp_call``."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:183
msgid "Object Calling API"
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:185
msgid ""
"Various functions are available for calling a Python object. Each converts "
"its arguments to a convention supported by the called object either "
"*tp_call* or vectorcall. In order to do as litle conversion as possible, "
"pick one that best fits the format of data you have available."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:191
msgid ""
"The following table summarizes the available functions; please see "
"individual documentation for details."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:195
msgid "Function"
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:195
msgid "callable"
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:195
msgid "args"
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:195
msgid "kwargs"
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:197
msgid ":c:func:`PyObject_Call`"
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:197
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:199
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:201
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:203
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:205
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:209
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:217
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:219
msgid "``PyObject *``"
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:197
msgid "tuple"
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:197
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:219
msgid "dict/``NULL``"
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:199
msgid ":c:func:`PyObject_CallNoArgs`"
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:199
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:201
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:203
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:205
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:207
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:209
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:211
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:213
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:215
msgid "---"
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:201
msgid ":c:func:`PyObject_CallOneArg`"
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:201
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:215
msgid "1 object"
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:203
msgid ":c:func:`PyObject_CallObject`"
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:203
msgid "tuple/``NULL``"
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:205
msgid ":c:func:`PyObject_CallFunction`"
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:205
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:207
msgid "format"
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:207
msgid ":c:func:`PyObject_CallMethod`"
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:207
msgid "obj + ``char*``"
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:209
msgid ":c:func:`PyObject_CallFunctionObjArgs`"
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:209
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:211
msgid "variadic"
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:211
msgid ":c:func:`PyObject_CallMethodObjArgs`"
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:211
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:213
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:215
msgid "obj + name"
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:213
msgid ":c:func:`PyObject_CallMethodNoArgs`"
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:215
msgid ":c:func:`PyObject_CallMethodOneArg`"
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:217
msgid ":c:func:`PyObject_Vectorcall`"
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:217
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:219
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:221
msgid "vectorcall"
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:219
msgid ":c:func:`PyObject_VectorcallDict`"
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:221
msgid ":c:func:`PyObject_VectorcallMethod`"
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:221
msgid "arg + name"
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:227
msgid ""
"Call a callable Python object *callable*, with arguments given by the tuple "
"*args*, and named arguments given by the dictionary *kwargs*."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:230
msgid ""
"*args* must not be *NULL*; use an empty tuple if no arguments are needed. If "
"no named arguments are needed, *kwargs* can be *NULL*."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:233
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:245
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:256
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:269
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:281
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:301
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:320
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:334
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:343
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:357
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:372
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:410
msgid ""
"Return the result of the call on success, or raise an exception and return "
"*NULL* on failure."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:236
msgid ""
"This is the equivalent of the Python expression: ``callable(*args, "
"**kwargs)``."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:242
msgid ""
"Call a callable Python object *callable* without any arguments. It is the "
"most efficient way to call a callable Python object without any argument."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:253
msgid ""
"Call a callable Python object *callable* with exactly 1 positional argument "
"*arg* and no keyword arguments."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:266
msgid ""
"Call a callable Python object *callable*, with arguments given by the tuple "
"*args*. If no arguments are needed, then *args* can be *NULL*."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:272
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:284
msgid "This is the equivalent of the Python expression: ``callable(*args)``."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:277
msgid ""
"Call a callable Python object *callable*, with a variable number of C "
"arguments. The C arguments are described using a :c:func:`Py_BuildValue` "
"style format string. The format can be *NULL*, indicating that no arguments "
"are provided."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:286
msgid ""
"Note that if you only pass :c:type:`PyObject \\*` args, :c:func:"
"`PyObject_CallFunctionObjArgs` is a faster alternative."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:289
msgid "The type of *format* was changed from ``char *``."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:295
msgid ""
"Call the method named *name* of object *obj* with a variable number of C "
"arguments. The C arguments are described by a :c:func:`Py_BuildValue` "
"format string that should produce a tuple."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:299
msgid "The format can be *NULL*, indicating that no arguments are provided."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:304
msgid ""
"This is the equivalent of the Python expression: ``obj.name(arg1, "
"arg2, ...)``."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:307
msgid ""
"Note that if you only pass :c:type:`PyObject \\*` args, :c:func:"
"`PyObject_CallMethodObjArgs` is a faster alternative."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:310
msgid "The types of *name* and *format* were changed from ``char *``."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:316
msgid ""
"Call a callable Python object *callable*, with a variable number of :c:type:"
"`PyObject \\*` arguments. The arguments are provided as a variable number "
"of parameters followed by *NULL*."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:323
msgid ""
"This is the equivalent of the Python expression: ``callable(arg1, "
"arg2, ...)``."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:329
msgid ""
"Call a method of the Python object *obj*, where the name of the method is "
"given as a Python string object in *name*. It is called with a variable "
"number of :c:type:`PyObject \\*` arguments. The arguments are provided as a "
"variable number of parameters followed by *NULL*."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:340
msgid ""
"Call a method of the Python object *obj* without arguments, where the name "
"of the method is given as a Python string object in *name*."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:353
msgid ""
"Call a method of the Python object *obj* with a single positional argument "
"*arg*, where the name of the method is given as a Python string object in "
"*name*."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:367
msgid ""
"Call a callable Python object *callable*. The arguments are the same as for :"
"c:type:`vectorcallfunc`. If *callable* supports vectorcall_, this directly "
"calls the vectorcall function stored in *callable*."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:381
msgid ""
"Call *callable* with positional arguments passed exactly as in the "
"vectorcall_ protocol, but with keyword arguments passed as a dictionary "
"*kwdict*. The *args* array contains only the positional arguments."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:385
msgid ""
"Regardless of which protocol is used internally, a conversion of arguments "
"needs to be done. Therefore, this function should only be used if the caller "
"already has a dictionary ready to use for the keyword arguments, but not a "
"tuple for the positional arguments."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:397
msgid ""
"Call a method using the vectorcall calling convention. The name of the "
"method is given as a Python string *name*. The object whose method is called "
"is *args[0]*, and the *args* array starting at *args[1]* represents the "
"arguments of the call. There must be at least one positional argument. "
"*nargsf* is the number of positional arguments including *args[0]*, plus :"
"const:`PY_VECTORCALL_ARGUMENTS_OFFSET` if the value of ``args[0]`` may "
"temporarily be changed. Keyword arguments can be passed just like in :c:func:"
"`PyObject_Vectorcall`."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:406
msgid ""
"If the object has the :const:`Py_TPFLAGS_METHOD_DESCRIPTOR` feature, this "
"will call the unbound method object with the full *args* vector as arguments."
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:419
msgid "Call Support API"
msgstr ""
#: /home/mdk/clones/python/cpython/Doc/c-api/call.rst:423
msgid ""
"Determine if the object *o* is callable. Return ``1`` if the object is "
"callable and ``0`` otherwise. This function always succeeds."
msgstr ""