| Left: | ||
| Right: |
| LEFT | RIGHT |
|---|---|
| 1 | 1 |
| 2 /* Generic object operations; and implementation of None (NoObject) */ | 2 /* Generic object operations; and implementation of None (NoObject) */ |
| 3 | 3 |
| 4 #include "Python.h" | 4 #include "Python.h" |
| 5 #include "sliceobject.h" /* For PyEllipsis_Type */ | 5 #include "sliceobject.h" /* For PyEllipsis_Type */ |
| 6 #include "frameobject.h" | 6 #include "frameobject.h" |
| 7 | 7 |
| 8 #ifdef __cplusplus | 8 #ifdef __cplusplus |
| 9 extern "C" { | 9 extern "C" { |
| 10 #endif | 10 #endif |
| (...skipping 1874 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1885 assert(op->ob_refcnt == 0); | 1885 assert(op->ob_refcnt == 0); |
| 1886 ++_PyTrash_delete_nesting; | 1886 ++_PyTrash_delete_nesting; |
| 1887 (*dealloc)(op); | 1887 (*dealloc)(op); |
| 1888 --_PyTrash_delete_nesting; | 1888 --_PyTrash_delete_nesting; |
| 1889 } | 1889 } |
| 1890 } | 1890 } |
| 1891 | 1891 |
| 1892 #ifdef __cplusplus | 1892 #ifdef __cplusplus |
| 1893 } | 1893 } |
| 1894 #endif | 1894 #endif |
| LEFT | RIGHT |