##// END OF EJS Templates
cext: unconditionalize PYLONG_VALUE()...
Gregory Szorc -
r49674:bf6cdda9 default
parent child Browse files
Show More
@@ -13,11 +13,7 b''
13
13
14 #include "util.h"
14 #include "util.h"
15
15
16 #ifdef IS_PY3K
17 #define PYLONG_VALUE(o) ((PyLongObject *)o)->ob_digit[0]
16 #define PYLONG_VALUE(o) ((PyLongObject *)o)->ob_digit[0]
18 #else
19 #define PYLONG_VALUE(o) PyInt_AS_LONG(o)
20 #endif
21
17
22 /*
18 /*
23 * This is a multiset of directory names, built from the files that
19 * 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