File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change 61
61
#define __Pyx_TraceFrameInit (codeobj ) \
62
62
if (codeobj) $frame_code_cname = (PyCodeObject*) codeobj;
63
63
64
+
64
65
#if PY_VERSION_HEX >= 0x030b00a2
66
+ #if PY_VERSION_HEX >= 0x030C00b1
67
+ #define __Pyx_IsTracing (tstate , check_tracing , check_funcs ) \
68
+ ((!(check_tracing) || !(tstate)->tracing) && \
69
+ (!(check_funcs) || (tstate)->c_profilefunc || (CYTHON_TRACE && (tstate)->c_tracefunc)))
70
+ #else
65
71
#define __Pyx_IsTracing (tstate , check_tracing , check_funcs ) \
66
72
(unlikely((tstate)->cframe->use_tracing) && \
67
73
(!(check_tracing) || !(tstate)->tracing) && \
68
74
(!(check_funcs) || (tstate)->c_profilefunc || (CYTHON_TRACE && (tstate)->c_tracefunc)))
75
+ #endif
69
76
70
- #define __Pyx_EnterTracing (tstate ) PyThreadState_EnterTracing(tstate)
71
-
72
- #define __Pyx_LeaveTracing (tstate ) PyThreadState_LeaveTracing(tstate)
77
+ #define __Pyx_EnterTracing (tstate ) PyThreadState_EnterTracing(tstate)
78
+ #define __Pyx_LeaveTracing (tstate ) PyThreadState_LeaveTracing(tstate)
73
79
74
80
#elif PY_VERSION_HEX >= 0x030a00b1
75
81
#define __Pyx_IsTracing (tstate , check_tracing , check_funcs ) \
You can’t perform that action at this time.
0 commit comments