Home
last modified time | relevance | path

Searched refs:PyObject_NEW_VAR (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython2/Misc/
Dpymemcompat.h55 #define PyObject_NewVar PyObject_NEW_VAR
/external/python/cpython2/Include/
Dobjimpl.h196 #define PyObject_NEW_VAR(type, typeobj, n) \ macro
/external/python/cpython2/Modules/
D_sre.c2588 copy = PyObject_NEW_VAR(PatternObject, &Pattern_Type, self->codesize); in pattern_copy()
2754 self = PyObject_NEW_VAR(PatternObject, &Pattern_Type, n); in _compile()
3590 copy = PyObject_NEW_VAR(MatchObject, &Match_Type, slots); in match_copy()
3788 match = PyObject_NEW_VAR(MatchObject, &Match_Type, in pattern_new_match()
/external/python/cpython2/Doc/data/
Drefcounts.dat1008 PyObject_NEW_VAR:PyObject*::+1:
/external/python/cpython2/Objects/
Dlongobject.c76 return PyObject_NEW_VAR(PyLongObject, &PyLong_Type, size); in _PyLong_New()