Home
last modified time | relevance | path

Searched refs:Pattern_Type (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Modules/
D_sre.c270 static PyTypeObject Pattern_Type; variable
1349 self = PyObject_NEW_VAR(PatternObject, &Pattern_Type, n); in _sre_compile_impl()
2535 if (Py_TYPE(lefto) != &Pattern_Type || Py_TYPE(righto) != &Pattern_Type) { in pattern_richcompare()
2605 static PyTypeObject Pattern_Type = { variable
2788 if (PyType_Ready(&Pattern_Type) || PyType_Ready(&Match_Type) || in PyInit__sre()
/external/python/cpython2/Modules/
D_sre.c2602 copy = PyObject_NEW_VAR(PatternObject, &Pattern_Type, self->codesize); in pattern_copy()
2714 statichere PyTypeObject Pattern_Type = { variable
2768 self = PyObject_NEW_VAR(PatternObject, &Pattern_Type, n); in _compile()
4035 if (PyType_Ready(&Pattern_Type) || PyType_Ready(&Match_Type) || in init_sre()