HomeSort by relevance Sort by last modified time
    Searched full:m_slots (Results 1 - 7 of 7) sorted by null

  /external/python/cpython3/Include/
moduleobject.h 80 struct PyModuleDef_Slot* m_slots; member in struct:PyModuleDef
  /external/python/cpython3/Modules/
_testmultiphase.c 228 slots, /* m_slots */ \
333 NULL, /* m_slots */
351 NULL, /* m_slots */
418 slots_create_nonmodule, /* m_slots */
437 slots_create_nonmodule, /* m_slots */
_asynciomodule.c     [all...]
  /external/python/cpython3/PC/
_testconsole.c 119 testconsole_slots, /* m_slots */
  /external/python/cpython3/Objects/
moduleobject.c 175 if (module->m_slots) {
178 "module %s: PyModule_Create is incompatible with m_slots", name);
260 for (cur_slot = def->m_slots; cur_slot && cur_slot->slot; cur_slot++) {
376 if (def->m_slots == NULL) {
380 for (cur_slot = def->m_slots; cur_slot && cur_slot->slot; cur_slot++) {
  /external/python/cpython3/Doc/c-api/
module.rst 183 .. c:member:: PyModuleDef_Slot* m_slots
187 When using single-phase initialization, *m_slots* must be *NULL*.
267 :c:member:`~PyModuleDef.m_slots`. Before it is returned, the ``PyModuleDef``
279 The *m_slots* member of the module definition must point to an array of
294 The *m_slots* array must be terminated by a slot with id 0.
340 order they appear in the *m_slots* array.
  /external/python/cpython3/Python/
pystate.c 273 if (module->m_slots) {
294 if (def->m_slots) {
339 if (def->m_slots) {

Completed in 328 milliseconds