# SOME DESCRIPTIVE TITLE. # Copyright (C) 1990-2016, Python Software Foundation # This file is distributed under the same license as the Python package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 2.7\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-10-30 10:44+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: ../Doc/c-api/type.rst:6 msgid "Type Objects" msgstr "Objets type" #: ../Doc/c-api/type.rst:13 msgid "The C structure of the objects used to describe built-in types." msgstr "" #: ../Doc/c-api/type.rst:20 msgid "" "This is the type object for type objects; it is the same object as ``type`` " "and ``types.TypeType`` in the Python layer." msgstr "" #: ../Doc/c-api/type.rst:26 msgid "" "Return true if the object *o* is a type object, including instances of types " "derived from the standard type object. Return false in all other cases." msgstr "" #: ../Doc/c-api/type.rst:32 msgid "" "Return true if the object *o* is a type object, but not a subtype of the " "standard type object. Return false in all other cases." msgstr "" #: ../Doc/c-api/type.rst:40 msgid "Clear the internal lookup cache. Return the current version tag." msgstr "" #: ../Doc/c-api/type.rst:47 msgid "" "Invalidate the internal lookup cache for the type and all of its subtypes. " "This function must be called after any manual modification of the attributes " "or base classes of the type." msgstr "" #: ../Doc/c-api/type.rst:56 msgid "" "Return true if the type object *o* sets the feature *feature*. Type " "features are denoted by single bit flags." msgstr "" #: ../Doc/c-api/type.rst:62 msgid "" "Return true if the type object includes support for the cycle detector; this " "tests the type flag :const:`Py_TPFLAGS_HAVE_GC`." msgstr "" #: ../Doc/c-api/type.rst:70 msgid "Return true if *a* is a subtype of *b*." msgstr "" #: ../Doc/c-api/type.rst:74 msgid "" "This function only checks for actual subtypes, which means that :meth:" "`~class.__subclasscheck__` is not called on *b*. Call :c:func:" "`PyObject_IsSubclass` to do the same check that :func:`issubclass` would do." msgstr "" #: ../Doc/c-api/type.rst:84 msgid "" "This function used an :c:type:`int` type for *nitems*. This might require " "changes in your code for properly supporting 64-bit systems." msgstr "" #: ../Doc/c-api/type.rst:96 msgid "" "Finalize a type object. This should be called on all type objects to finish " "their initialization. This function is responsible for adding inherited " "slots from a type's base class. Return ``0`` on success, or return ``-1`` " "and sets an exception on error." msgstr ""