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 74f0772 commit cc5240cCopy full SHA for cc5240c
Include/cpython/longintrepr.h
@@ -89,6 +89,8 @@ struct _longobject {
89
_PyLongValue long_value;
90
};
91
92
+PyAPI_FUNC(PyLongObject *) _PyLong_New(Py_ssize_t);
93
+
94
95
/* Inline some internals for speed. These should be in pycore_long.h
96
* if user code didn't need them inlined. */
Include/internal/pycore_long.h
@@ -47,8 +47,6 @@ extern "C" {
47
# error "_PY_LONG_DEFAULT_MAX_STR_DIGITS smaller than threshold."
48
#endif
49
50
-extern PyLongObject* _PyLong_New(Py_ssize_t);
51
-
52
// Return a copy of src.
53
extern PyObject* _PyLong_Copy(PyLongObject *src);
54
0 commit comments