File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -71,6 +71,12 @@ distinguished from a number. Use :c:func:`PyErr_Occurred` to disambiguate.
7171 on failure.
7272
7373
74+ .. c:function:: PyObject* PyLong_FromUnsignedLongLong(unsigned long long v)
75+
76+ Return a new :c:type:`PyLongObject` object from a C :c:expr:`unsigned long long`,
77+ or ``NULL`` on failure.
78+
79+
7480.. c:function:: PyObject* PyLong_FromInt32(int32_t value)
7581 PyObject* PyLong_FromInt64(int64_t value)
7682
@@ -81,12 +87,6 @@ distinguished from a number. Use :c:func:`PyErr_Occurred` to disambiguate.
8187 .. versionadded:: 3.14
8288
8389
84- .. c:function:: PyObject* PyLong_FromUnsignedLongLong(unsigned long long v)
85-
86- Return a new :c:type:`PyLongObject` object from a C :c:expr:`unsigned long long`,
87- or ``NULL`` on failure.
88-
89-
9090.. c:function:: PyObject* PyLong_FromUInt32(uint32_t value)
9191 PyObject* PyLong_FromUInt64(uint64_t value)
9292
You can’t perform that action at this time.
0 commit comments