| Left: | ||
| Right: |
| LEFT | RIGHT |
|---|---|
| 1 #ifndef Py_OBJECT_H | 1 #ifndef Py_OBJECT_H |
| 2 #define Py_OBJECT_H | 2 #define Py_OBJECT_H |
| 3 #ifdef __cplusplus | 3 #ifdef __cplusplus |
| 4 extern "C" { | 4 extern "C" { |
| 5 #endif | 5 #endif |
| 6 | 6 |
| 7 | 7 |
| 8 /* Object and type object interface */ | 8 /* Object and type object interface */ |
| 9 | 9 |
| 10 /* | 10 /* |
| (...skipping 961 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 972 if (_PyTrash_delete_later && _PyTrash_delete_nesting <= 0) \ | 972 if (_PyTrash_delete_later && _PyTrash_delete_nesting <= 0) \ |
| 973 _PyTrash_destroy_chain(); \ | 973 _PyTrash_destroy_chain(); \ |
| 974 } \ | 974 } \ |
| 975 else \ | 975 else \ |
| 976 _PyTrash_deposit_object((PyObject*)op); | 976 _PyTrash_deposit_object((PyObject*)op); |
| 977 | 977 |
| 978 #ifdef __cplusplus | 978 #ifdef __cplusplus |
| 979 } | 979 } |
| 980 #endif | 980 #endif |
| 981 #endif /* !Py_OBJECT_H */ | 981 #endif /* !Py_OBJECT_H */ |
| LEFT | RIGHT |