##// END OF EJS Templates
cext: fix for PyLong refactoring in CPython 3.12...
Mads Kiilerich -
r51228:0d3690f8 stable
parent child Browse files
Show More
@@ -13,7 +13,11 b''
13 13
14 14 #include "util.h"
15 15
16 #if PY_VERSION_HEX >= 0x030C00A5
17 #define PYLONG_VALUE(o) ((PyLongObject *)o)->long_value.ob_digit[0]
18 #else
16 19 #define PYLONG_VALUE(o) ((PyLongObject *)o)->ob_digit[0]
20 #endif
17 21
18 22 /*
19 23 * This is a multiset of directory names, built from the files that
General Comments 0
You need to be logged in to leave comments. Login now