Lines Matching refs:EXCSTORE
434 #define MiddlingExtendsException(EXCBASE, EXCNAME, EXCSTORE, EXCDOC) \ argument
438 sizeof(Py ## EXCSTORE ## Object), \
439 0, (destructor)EXCSTORE ## _dealloc, 0, 0, 0, 0, 0, 0, 0, 0, 0, \
442 PyDoc_STR(EXCDOC), (traverseproc)EXCSTORE ## _traverse, \
443 (inquiry)EXCSTORE ## _clear, 0, 0, 0, 0, 0, 0, 0, &_ ## EXCBASE, \
444 0, 0, 0, offsetof(Py ## EXCSTORE ## Object, dict), \
445 (initproc)EXCSTORE ## _init, 0, BaseException_new,\
449 #define ComplexExtendsException(EXCBASE, EXCNAME, EXCSTORE, EXCDEALLOC, EXCMETHODS, EXCMEMBERS, EXC… argument
453 sizeof(Py ## EXCSTORE ## Object), 0, \
454 (destructor)EXCSTORE ## _dealloc, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \
457 PyDoc_STR(EXCDOC), (traverseproc)EXCSTORE ## _traverse, \
458 (inquiry)EXCSTORE ## _clear, 0, 0, 0, 0, EXCMETHODS, \
460 0, 0, 0, offsetof(Py ## EXCSTORE ## Object, dict), \
461 (initproc)EXCSTORE ## _init, 0, BaseException_new,\