Objects/typeobject/object_new_init

Source   Edit  

Procs

proc object_init(obj: PyObject; args: PyTupleObject; kwds: PyDictObject): PyObject {.
    cdecl, ...raises: [], tags: [RootEffect], forbids: [].}
Source   Edit  
proc object_initwrap(self: PyObject; args: openArray[PyObject]; kwargs: PyObject): PyObject {.
    cdecl, ...raises: [], tags: [RootEffect], forbids: [].}
Source   Edit  
proc object_new(typ: PyTypeObject; args: PyTupleObject; kwds: PyDictObject): PyObject {.
    cdecl, ...raises: [], tags: [RootEffect], forbids: [].}
Source   Edit  
proc object_newwrap(args: openArray[PyObject]; kwargs: PyObject): PyObject {.
    cdecl, ...raises: [], tags: [RootEffect], forbids: [].}
Source   Edit