/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
Python-ast.c | 353 static PyTypeObject *excepthandler_type;
variable 359 static PyTypeObject *ExceptHandler_type;
[all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
Python-ast.c | 353 static PyTypeObject *excepthandler_type;
variable 359 static PyTypeObject *ExceptHandler_type;
935 excepthandler_type = make_type("excepthandler", &AST_type, NULL, 0);
936 if (!excepthandler_type) return 0;
937 if (!add_attributes(excepthandler_type, excepthandler_attributes, 2))
939 ExceptHandler_type = make_type("ExceptHandler", excepthandler_type, [all...] |
/external/python/cpython2/Python/ |
Python-ast.c | 353 static PyTypeObject *excepthandler_type; variable 359 static PyTypeObject *ExceptHandler_type; 952 excepthandler_type = make_type("excepthandler", &AST_type, NULL, 0); 953 if (!excepthandler_type) return 0; 954 if (!add_attributes(excepthandler_type, excepthandler_attributes, 2)) 956 ExceptHandler_type = make_type("ExceptHandler", excepthandler_type, 958 if (!ExceptHandler_type) return 0; [all...] |
/external/python/cpython3/Python/ |
Python-ast.c | 445 static PyTypeObject *excepthandler_type; variable 451 static PyTypeObject *ExceptHandler_type; [all...] |