8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29951c8 commit 113b2d7Copy full SHA for 113b2d7
Include/cpython/longobject.h
@@ -2,6 +2,9 @@
2
# error "this header file must not be included directly"
3
#endif
4
5
+#define _PyLong_CAST(op) \
6
+ (assert(PyLong_Check(op)), _Py_CAST(PyLongObject*, (op)))
7
+
8
PyAPI_FUNC(PyObject*) PyLong_FromUnicodeObject(PyObject *u, int base);
9
10
#define Py_ASNATIVEBYTES_DEFAULTS -1
0 commit comments