100+ results results for 'PyCFunction_NewEx ' (282 ms)
47PyObject * 48PyCFunction_NewEx(PyMethodDef *ml, PyObject *self, PyObject *module) 49{ 180 break; 181 /* METH_O is deprecated; PyCFunction_NewEx is supposed to convert it to 182 METH_ARG_RANGE and set ml_{min,max}_arity correctly. */ 479 480/* PyCFunction_New() is now just a macro that calls PyCFunction_NewEx(), 481 but it's part of the API so we need to keep a function around that 490{ 491 return PyCFunction_NewEx(ml, self, NULL); 492}modsupport.c https://bitbucket.org/apexgames-ondemand/zombie-onslaught-source.git | C | 643 lines
79 } 80 v = PyCFunction_NewEx(ml, passthrough, n); 81 if (v == NULL) {methodobject.h http://unladen-swallow.googlecode.com/svn/trunk/ | C Header | 126 lines
75 76#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) 77PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,modsupport.c https://bitbucket.org/glix/python.git | C | 643 lines
79 } 80 v = PyCFunction_NewEx(ml, passthrough, n); 81 if (v == NULL) {modsupport.c https://github.com/chrishaukap/GameDev.git | C | 643 lines
79 } 80 v = PyCFunction_NewEx(ml, passthrough, n); 81 if (v == NULL) {methodobject.h https://gitlab.com/envieidoc/Clover | C Header | 93 lines
47 48#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) 49PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,methodobject.h https://gitlab.com/envieidoc/Clover | C Header | 93 lines
47 48#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) 49PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,methodobject.h https://bitbucket.org/khurley/python.git | C Header | 93 lines
47 48#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) 49PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,methodobject.h https://gitlab.com/orvi2014/rcs-db-ext | C Header | 93 lines
47 48#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) 49PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,methodobject.h https://gitlab.com/CoastHeavyIndustries/OSM-stats | C Header | 93 lines
47 48#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) 49PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,methodobject.h https://gitlab.com/minoca/tools | C Header | 93 lines
47 48#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) 49PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,methodobject.c https://github.com/albertz/CPython.git | C | 333 lines
17 18/* undefine macro trampoline to PyCFunction_NewEx */ 19#undef PyCFunction_New 23{ 24 return PyCFunction_NewEx(ml, self, NULL); 25} 27PyObject * 28PyCFunction_NewEx(PyMethodDef *ml, PyObject *self, PyObject *module) 29{methodobject.h https://github.com/albertz/CPython.git | C Header | 135 lines
64 65#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) 66PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,moduleobject.c https://bitbucket.org/kbengine/kbengine.git | C | 446 lines
133 } 134 v = PyCFunction_NewEx(ml, (PyObject*)m, n); 135 if (v == NULL) {methodobject.c https://gitlab.com/envieidoc/Clover | C | 427 lines
16PyObject * 17PyCFunction_NewEx(PyMethodDef *ml, PyObject *self, PyObject *module) 18{ 414 415/* PyCFunction_New() is now just a macro that calls PyCFunction_NewEx(), 416 but it's part of the API so we need to keep a function around that 425{ 426 return PyCFunction_NewEx(ml, self, NULL); 427}methodobject.c https://gitlab.com/envieidoc/Clover | C | 427 lines
16PyObject * 17PyCFunction_NewEx(PyMethodDef *ml, PyObject *self, PyObject *module) 18{ 414 415/* PyCFunction_New() is now just a macro that calls PyCFunction_NewEx(), 416 but it's part of the API so we need to keep a function around that 425{ 426 return PyCFunction_NewEx(ml, self, NULL); 427}python32stub.def https://bitbucket.org/kbengine/kbengine.git | Module-Definition | 689 lines
39PyCFunction_GetSelf 40PyCFunction_NewEx 41PyCFunction_Typemethodobject.py https://bitbucket.org/rokujyouhitoma/pypy/ | Python | 282 lines
233@cpython_api([lltype.Ptr(PyMethodDef), PyObject, PyObject], PyObject) 234def PyCFunction_NewEx(space, ml, w_self, w_name): 235 return space.wrap(W_PyCFunctionObject(space, ml, w_self, w_name))methodobject.h https://gitlab.com/unofficial-mirrors/cpython | C Header | 124 lines
62 63#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) 64PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,exceptions.c https://github.com/tmacreturns/XBMC_wireless_setup.git | C | 1859 lines
139 /* get a wrapper for the built-in function */ 140 PyObject *func = PyCFunction_NewEx(methods, NULL, module); 141 PyObject *meth;python3.def https://github.com/albertz/CPython.git | Module-Definition | 799 lines
42 PyCFunction_New=python37.PyCFunction_New 43 PyCFunction_NewEx=python37.PyCFunction_NewEx 44 PyCFunction_Type=python37.PyCFunction_Type DATAmoduleobject.c https://github.com/albertz/CPython.git | C | 830 lines
158 } 159 func = PyCFunction_NewEx(fdef, (PyObject*)module, name); 160 if (func == NULL) {descrobject.c https://github.com/albertz/CPython.git | C | 1520 lines
124 } 125 return PyCFunction_NewEx(descr->d_method, type, NULL); 126} 134 return res; 135 return PyCFunction_NewEx(descr->d_method, obj, NULL); 136}_abc.c https://github.com/albertz/CPython.git | C | 832 lines
149 } 150 destroy_cb = PyCFunction_NewEx(&_destroy_def, wr, NULL); 151 if (destroy_cb == NULL) {modsupport.c https://github.com/atoun/empythoned.git | C | 644 lines
80 } 81 v = PyCFunction_NewEx(ml, passthrough, n); 82 if (v == NULL) {modsupport.c https://gitlab.com/envieidoc/Clover | C | 644 lines
80 } 81 v = PyCFunction_NewEx(ml, passthrough, n); 82 if (v == NULL) {modsupport.c https://gitlab.com/envieidoc/Clover | C | 644 lines
80 } 81 v = PyCFunction_NewEx(ml, passthrough, n); 82 if (v == NULL) {methodobject.h https://gitlab.com/abhi1tb/build | C Header | 131 lines
59 60#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) 61PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,modsupport.c https://github.com/seanjensengrey/CPython.git | C | 643 lines
79 } 80 v = PyCFunction_NewEx(ml, passthrough, n); 81 if (v == NULL) {python3.def https://bitbucket.org/kbengine/kbengine.git | Module-Definition | 689 lines
39 PyCFunction_GetSelf=python32.PyCFunction_GetSelf 40 PyCFunction_NewEx=python32.PyCFunction_NewEx 41 PyCFunction_Type=python32.PyCFunction_Type DATAmethodobject.c https://github.com/atoun/empythoned.git | C | 427 lines
16PyObject * 17PyCFunction_NewEx(PyMethodDef *ml, PyObject *self, PyObject *module) 18{ 414 415/* PyCFunction_New() is now just a macro that calls PyCFunction_NewEx(), 416 but it's part of the API so we need to keep a function around that 425{ 426 return PyCFunction_NewEx(ml, self, NULL); 427}methodobject.c https://bitbucket.org/kbengine/kbengine.git | C | 318 lines
16PyObject * 17PyCFunction_NewEx(PyMethodDef *ml, PyObject *self, PyObject *module) 18{ 305 306/* PyCFunction_New() is now just a macro that calls PyCFunction_NewEx(), 307 but it's part of the API so we need to keep a function around that 316{ 317 return PyCFunction_NewEx(ml, self, NULL); 318}methodobject.h https://github.com/tmacreturns/XBMC_wireless_setup.git | C Header | 91 lines
47 48#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) 49PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,core.c https://github.com/nabetaro/elinks.git | C | 337 lines
327 for (method = methods; method && method->ml_name; method++) { 328 PyObject *function = PyCFunction_NewEx(method, NULL, name); 329 int result;modsupport.c https://github.com/replit/empythoned.git | C | 644 lines
80 } 81 v = PyCFunction_NewEx(ml, passthrough, n); 82 if (v == NULL) {methodobject.c https://github.com/seanjensengrey/CPython.git | C | 427 lines
16PyObject * 17PyCFunction_NewEx(PyMethodDef *ml, PyObject *self, PyObject *module) 18{ 414 415/* PyCFunction_New() is now just a macro that calls PyCFunction_NewEx(), 416 but it's part of the API so we need to keep a function around that 425{ 426 return PyCFunction_NewEx(ml, self, NULL); 427}python3.def https://gitlab.com/unofficial-mirrors/cpython | Module-Definition | 790 lines
42 PyCFunction_New=python37.PyCFunction_New 43 PyCFunction_NewEx=python37.PyCFunction_NewEx 44 PyCFunction_Type=python37.PyCFunction_Type DATAmoduleobject.c https://gitlab.com/unofficial-mirrors/cpython | C | 784 lines
146 } 147 func = PyCFunction_NewEx(fdef, (PyObject*)module, name); 148 if (func == NULL) {methodobject.c https://gitlab.com/unofficial-mirrors/cpython | C | 657 lines
15 16/* undefine macro trampoline to PyCFunction_NewEx */ 17#undef PyCFunction_New 21{ 22 return PyCFunction_NewEx(ml, self, NULL); 23} 25PyObject * 26PyCFunction_NewEx(PyMethodDef *ml, PyObject *self, PyObject *module) 27{descrobject.c https://gitlab.com/unofficial-mirrors/cpython | C | 1491 lines
117 } 118 return PyCFunction_NewEx(descr->d_method, type, NULL); 119} 127 return res; 128 return PyCFunction_NewEx(descr->d_method, obj, NULL); 129} 325 326 func = PyCFunction_NewEx(descr->d_method, self, NULL); 327 if (func == NULL)typeobject.py https://github.com/alemacgo/pypy.git | Python | 708 lines
22from pypy.module.cpyext.methodobject import ( 23 PyDescr_NewWrapper, PyCFunction_NewEx, PyCFunction_typedef) 24from pypy.module.cpyext.pyobject import Py_IncRef, Py_DecRef, _Py_Dealloc 235 pyo = rffi.cast(PyObject, pto) 236 dict_w["__new__"] = PyCFunction_NewEx(space, get_new_method_def(space), 237 from_ref(space, pyo), None)typeobject.py https://github.com/nicolaslara/pypy.git | Python | 708 lines
22from pypy.module.cpyext.methodobject import ( 23 PyDescr_NewWrapper, PyCFunction_NewEx, PyCFunction_typedef) 24from pypy.module.cpyext.pyobject import Py_IncRef, Py_DecRef, _Py_Dealloc 235 pyo = rffi.cast(PyObject, pto) 236 dict_w["__new__"] = PyCFunction_NewEx(space, get_new_method_def(space), 237 from_ref(space, pyo), None)typeobject.py https://github.com/ssadler/pypy.git | Python | 708 lines
22from pypy.module.cpyext.methodobject import ( 23 PyDescr_NewWrapper, PyCFunction_NewEx, PyCFunction_typedef) 24from pypy.module.cpyext.pyobject import Py_IncRef, Py_DecRef, _Py_Dealloc 235 pyo = rffi.cast(PyObject, pto) 236 dict_w["__new__"] = PyCFunction_NewEx(space, get_new_method_def(space), 237 from_ref(space, pyo), None)methodobject.c https://github.com/replit/empythoned.git | C | 427 lines
16PyObject * 17PyCFunction_NewEx(PyMethodDef *ml, PyObject *self, PyObject *module) 18{ 414 415/* PyCFunction_New() is now just a macro that calls PyCFunction_NewEx(), 416 but it's part of the API so we need to keep a function around that 425{ 426 return PyCFunction_NewEx(ml, self, NULL); 427}modsupport.c https://github.com/tmacreturns/XBMC_wireless_setup.git | C | 590 lines
76 } 77 v = PyCFunction_NewEx(ml, passthrough, n); 78 if (v == NULL) {core.c https://bitbucket.org/tifan/elinks.git | C | 280 lines
270 for (method = methods; method && method->ml_name; method++) { 271 PyObject *function = PyCFunction_NewEx(method, NULL, name); 272 int result;_dynfunc.c https://bitbucket.org/genekh/python.git | C | 453 lines
294 modname = PyString_FromString(PyModule_GetName(module)); 295 funcobj = PyCFunction_NewEx(&closure->def, (PyObject *) closure, modname); 296 Py_DECREF(closure);modsupport.py https://github.com/alemacgo/pypy.git | Python | 128 lines
6from pypy.module.cpyext.methodobject import ( 7 W_PyCFunctionObject, PyCFunction_NewEx, PyDescr_NewMethod, 8 PyMethodDef, PyStaticMethod_New) 96 elif flags & METH_STATIC: 97 w_func = PyCFunction_NewEx(space, method, None, None) 98 w_obj = PyStaticMethod_New(space, w_func)modsupport.py https://github.com/nicolaslara/pypy.git | Python | 128 lines
6from pypy.module.cpyext.methodobject import ( 7 W_PyCFunctionObject, PyCFunction_NewEx, PyDescr_NewMethod, 8 PyMethodDef, PyStaticMethod_New) 96 elif flags & METH_STATIC: 97 w_func = PyCFunction_NewEx(space, method, None, None) 98 w_obj = PyStaticMethod_New(space, w_func)methodobject.h https://gitlab.com/areema/myproject | C Header | 94 lines
48 49#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) 50PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,modsupport.py https://github.com/ssadler/pypy.git | Python | 128 lines
6from pypy.module.cpyext.methodobject import ( 7 W_PyCFunctionObject, PyCFunction_NewEx, PyDescr_NewMethod, 8 PyMethodDef, PyStaticMethod_New) 96 elif flags & METH_STATIC: 97 w_func = PyCFunction_NewEx(space, method, None, None) 98 w_obj = PyStaticMethod_New(space, w_func)methodobject.h https://bitbucket.org/beqa/nvdadependencyvirtualenvironment.git | C Header | 93 lines
47 48#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) 49PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,methodobject.c https://github.com/tmacreturns/XBMC_wireless_setup.git | C | 374 lines
9PyObject * 10PyCFunction_NewEx(PyMethodDef *ml, PyObject *self, PyObject *module) 11{ 361 362/* PyCFunction_New() is now just a macro that calls PyCFunction_NewEx(), 363 but it's part of the API so we need to keep a function around that 372{ 373 return PyCFunction_NewEx(ml, self, NULL); 374}methodobject.h https://github.com/atoun/empythoned.git | C Header | 93 lines
47 48#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) 49PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,methodobject.h https://bitbucket.org/alirohman/upt_tik_itenas.git | C Header | 93 lines
47 48#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) 49PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,methodobject.h https://bitbucket.org/jream-media/learn-python.git | C Header | 93 lines
47 48#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) 49PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,methodobject.h https://gitlab.com/Alioth-Project/clang-r445002 | C Header | 110 lines
43 44#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) 45PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *, 48#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03090000 49#define PyCFunction_NewEx(ML, SELF, MOD) PyCMethod_New((ML), (SELF), (MOD), NULL) 50PyAPI_FUNC(PyObject *) PyCMethod_New(PyMethodDef *, PyObject *,methodobject.h https://bitbucket.org/apexgames-ondemand/zombie-onslaught-source.git | C Header | 93 lines
47 48#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) 49PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,methodobject.h https://bitbucket.org/apexgames-ondemand/zombie-onslaught-source.git | C Header | 93 lines
47 48#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) 49PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,methodobject.h https://bitbucket.org/kbengine/kbengine.git | C Header | 87 lines
47 48#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) 49PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,methodobject.h https://bitbucket.org/glix/python.git | C Header | 93 lines
47 48#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) 49PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,methodobject.c https://github.com/brosner/cleese.git | C | 118 lines
8PyObject * 9PyCFunction_NewEx(PyMethodDef *ml, PyObject *self, PyObject *module) 10{methodobject.h https://gitlab.com/SplatoonModdingHub/PTVS | C Header | 93 lines
47 48#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) 49PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,methodobject.h https://github.com/mantidproject/3rdpartylibs-win64.git | C Header | 93 lines
47 48#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) 49PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,methodobject.h https://github.com/mantidproject/3rdpartylibs-win32.git | C Header | 93 lines
47 48#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) 49PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,methodobject.h https://github.com/mantidproject/3rdpartyincludes.git | C Header | 93 lines
47 48#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) 49PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,methodobject.h https://github.com/seanjensengrey/CPython.git | C Header | 93 lines
47 48#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) 49PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,methodobject.h https://github.com/chrishaukap/GameDev.git | C Header | 93 lines
47 48#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) 49PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,methodobject.h https://github.com/chrishaukap/GameDev.git | C Header | 93 lines
47 48#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) 49PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,methodobject.h https://bitbucket.org/acekk/zadania-zad8.git | C Header | 93 lines
47 48#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) 49PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,methodobject.h https://bitbucket.org/acekk/zadania-zad8.git | C Header | 93 lines
47 48#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) 49PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,methodobject.h https://gitlab.com/nachee1325/todoprv | C Header | 93 lines
47 48#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) 49PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,methodobject.h https://gitlab.com/amra.zidani/DjangoWebProject1 | C Header | 94 lines
48 49#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) 50PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,methodobject.h https://bitbucket.org/mtkacz/chat.git | C Header | 93 lines
47 48#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) 49PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,methodobject.h https://bitbucket.org/apratim_ankur/city_lounge.git | C Header | 93 lines
47 48#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) 49PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,methodobject.h https://gitlab.com/chaifegn/myblog | C Header | 93 lines
47 48#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) 49PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,methodobject.h https://gitlab.com/pierreEffiScience/TwitterClustering | C Header | 93 lines
47 48#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) 49PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,methodobject.h https://gitlab.com/pierreEffiScience/ImageLabeling | C Header | 93 lines
47 48#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) 49PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,methodobject.c https://github.com/chrishaukap/GameDev.git | C | 427 lines
16PyObject * 17PyCFunction_NewEx(PyMethodDef *ml, PyObject *self, PyObject *module) 18{ 414 415/* PyCFunction_New() is now just a macro that calls PyCFunction_NewEx(), 416 but it's part of the API so we need to keep a function around that 425{ 426 return PyCFunction_NewEx(ml, self, NULL); 427}methodobject.c https://bitbucket.org/apexgames-ondemand/zombie-onslaught-source.git | C | 426 lines
16PyObject * 17PyCFunction_NewEx(PyMethodDef *ml, PyObject *self, PyObject *module) 18{ 413 414/* PyCFunction_New() is now just a macro that calls PyCFunction_NewEx(), 415 but it's part of the API so we need to keep a function around that 424{ 425 return PyCFunction_NewEx(ml, self, NULL); 426}methodobject.h https://gitlab.com/pmuontains/Odoo | C Header | 93 lines
47 48#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) 49PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,methodobject.c https://bitbucket.org/glix/python.git | C | 426 lines
16PyObject * 17PyCFunction_NewEx(PyMethodDef *ml, PyObject *self, PyObject *module) 18{ 413 414/* PyCFunction_New() is now just a macro that calls PyCFunction_NewEx(), 415 but it's part of the API so we need to keep a function around that 424{ 425 return PyCFunction_NewEx(ml, self, NULL); 426}methodobject.h https://github.com/rlmarsh85/bloodlines-resurgence.git | C Header | 93 lines
47 48#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) 49PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,methodobject.h https://github.com/ngbinh/libBlenderWindows.git | C Header | 87 lines
47 48#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) 49PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,pyml_stubs.c https://github.com/coccinelle/coccinelle.git | C | 1414 lines
172/* Wrapped by pywrap_closure */ 173static PyObject *(*Python_PyCFunction_NewEx) 174(PyMethodDef *, PyObject *, PyObject *); 647 ml_def = (PyMethodDef *) caml_aux(obj); 648 PyObject *f = Python_PyCFunction_NewEx(ml_def, obj, NULL); 649 Py_DECREF(obj);methodobject.h https://github.com/bloodlinesresurgence/bloodlines-resurgence.git | C Header | 93 lines
47 48#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) 49PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,methodobject.h https://github.com/pigfoot/mozbuilds.git | C Header | 93 lines
47 48#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) 49PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,pyml_stubs.c git://github.com/coccinelle/coccinelle.git | C | 1372 lines
169/* Wrapped by pywrap_closure */ 170static PyObject *(*Python_PyCFunction_NewEx) 171(PyMethodDef *, PyObject *, PyObject *); 634 ml_def = (PyMethodDef *) caml_aux(obj); 635 PyObject *f = Python_PyCFunction_NewEx(ml_def, obj, NULL); 636 CAMLreturn(pyml_wrap(f, true));pyinterpret.cpp https://pykd.svn.codeplex.com/svn | C++ | 857 lines
93 size_t( *PyTuple_Size)(PyObject *p); 94 PyObject* ( *PyCFunction_NewEx)(PyMethodDef *, PyObject *, PyObject *); 95 PyObject* ( *PySys_GetObject)(char *name);python33stub.def https://bitbucket.org/mirror/cpython/ | Module-Definition | 690 lines
39PyCFunction_GetSelf 40PyCFunction_NewEx 41PyCFunction_Typemodsupport.py https://bitbucket.org/pypy/pypy/ | Python | 135 lines
6from pypy.module.cpyext.methodobject import ( 7 W_PyCFunctionObject, PyCFunction_NewEx, PyDescr_NewMethod, 8 PyMethodDef, PyDescr_NewClassMethod, PyStaticMethod_New) 102 elif flags & METH_STATIC: 103 w_func = PyCFunction_NewEx(space, method, None, None) 104 w_obj = PyStaticMethod_New(space, w_func)pyapi.h https://pykd.svn.codeplex.com/svn | C Header | 206 lines
47 48PyObject* __stdcall PyCFunction_NewEx(PyMethodDef *, PyObject *, PyObject *); 49PyObject* __stdcall PyClass_New(PyObject* className, PyObject* classBases, PyObject* classDict);modsupport.c https://github.com/brosner/cleese.git | C | 405 lines
21 for (ml = methods; ml->ml_name != NULL; ml++) { 22 v = PyCFunction_NewEx(ml, passthrough, n); 23 if (v == NULL)methodobject.h https://gitlab.com/suyesh/Djangotest | C Header | 93 lines
47 48#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) 49PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,methodobject.h https://gitlab.com/atom-k/android-plus-plus | C Header | 93 lines
47 48#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) 49PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,methodobject.h https://gitlab.com/areema/jirancomms_project | C Header | 94 lines
48 49#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) 50PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,methodobject.h https://github.com/brosner/cleese.git | C Header | 58 lines
32 33#define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) 34PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,python3.def https://bitbucket.org/arigo/cpython-withatomic/ | Module-Definition | 690 lines
39 PyCFunction_GetSelf=python33.PyCFunction_GetSelf 40 PyCFunction_NewEx=python33.PyCFunction_NewEx 41 PyCFunction_Type=python33.PyCFunction_Type DATAtypeobject.py https://bitbucket.org/alex_gaynor/pypy-postgresql/ | Python | 663 lines
22from pypy.module.cpyext.methodobject import ( 23 PyDescr_NewWrapper, PyCFunction_NewEx, PyCFunction_typedef) 24from pypy.module.cpyext.pyobject import Py_IncRef, Py_DecRef, _Py_Dealloc 220 pyo = rffi.cast(PyObject, pto) 221 dict_w["__new__"] = PyCFunction_NewEx(space, get_new_method_def(space), 222 from_ref(space, pyo), None)typeobject.py https://bitbucket.org/pypy/pypy/ | Python | 912 lines
21from pypy.module.cpyext.methodobject import (W_PyCClassMethodObject, 22 W_PyCWrapperObject, PyCFunction_NewEx, PyCFunction_typedef, PyMethodDef, 23 W_PyCMethodObject, W_PyCFunctionObject)pygstexception.c http://ossbuild.googlecode.com/svn/trunk/ | C | 270 lines
72 73 func = PyCFunction_NewEx (method, NULL, module); 74 if (func == NULL)descrobject.c https://bitbucket.org/mirror/cpython/ | C | 1662 lines
117 } 118 return PyCFunction_NewEx(descr->d_method, type, NULL); 119} 127 return res; 128 return PyCFunction_NewEx(descr->d_method, obj, NULL); 129} 241 242 func = PyCFunction_NewEx(descr->d_method, self, NULL); 243 if (func == NULL) 294 295 func = PyCFunction_NewEx(descr->d_method, self, NULL); 296 if (func == NULL)