| Left: | ||
| Right: |
| LEFT | RIGHT |
|---|---|
| 1 /* Definitions for bytecode */ | 1 /* Definitions for bytecode */ |
| 2 | 2 |
| 3 #ifndef Py_LIMITED_API | 3 #ifndef Py_LIMITED_API |
| 4 #ifndef Py_CODE_H | 4 #ifndef Py_CODE_H |
| 5 #define Py_CODE_H | 5 #define Py_CODE_H |
| 6 #ifdef __cplusplus | 6 #ifdef __cplusplus |
| 7 extern "C" { | 7 extern "C" { |
| 8 #endif | 8 #endif |
| 9 | 9 |
| 10 #include "pyconfig.h" | 10 #include "pyconfig.h" |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 111 #endif | 111 #endif |
| 112 | 112 |
| 113 PyAPI_FUNC(PyObject*) PyCode_Optimize(PyObject *code, PyObject* consts, | 113 PyAPI_FUNC(PyObject*) PyCode_Optimize(PyObject *code, PyObject* consts, |
| 114 PyObject *names, PyObject *lineno_obj); | 114 PyObject *names, PyObject *lineno_obj); |
| 115 | 115 |
| 116 #ifdef __cplusplus | 116 #ifdef __cplusplus |
| 117 } | 117 } |
| 118 #endif | 118 #endif |
| 119 #endif /* !Py_CODE_H */ | 119 #endif /* !Py_CODE_H */ |
| 120 #endif /* Py_LIMITED_API */ | 120 #endif /* Py_LIMITED_API */ |
| LEFT | RIGHT |