HEX
Server: Apache
System: Linux b5.s-host.com.ua 4.18.0-305.10.2.el7.x86_64 #1 SMP Fri Jul 23 21:00:55 UTC 2021 x86_64
User: unelbhzm (1470)
PHP: 8.0.18
Disabled: NONE
Upload Files
File: //usr/lib64/python2.7/site-packages/Cython/Includes/cpython/instance.pxd
cdef extern from "Python.h":

    ############################################################################
    # 7.5.2 Instance Objects
    ############################################################################

    # PyTypeObject PyInstance_Type
    #
    # Type object for class instances.

    int PyInstance_Check(object obj)
    # Return true if obj is an instance.

    object PyInstance_New(object cls, object arg, object kw)
    # Return value: New reference.
    # Create a new instance of a specific class. The parameters arg
    # and kw are used as the positional and keyword parameters to the
    # object's constructor.

    object PyInstance_NewRaw(object cls, object dict)
    # Return value: New reference.
    # Create a new instance of a specific class without calling its
    # constructor. class is the class of new object. The dict
    # parameter will be used as the object's __dict__; if NULL, a new
    # dictionary will be created for the instance.