on failure.
+.. c:function:: PyObject* PyLong_FromUnsignedLongLong(unsigned long long v)
+
+ Return a new :c:type:`PyLongObject` object from a C :c:expr:`unsigned long long`,
+ or ``NULL`` on failure.
+
+
.. c:function:: PyObject* PyLong_FromInt32(int32_t value)
PyObject* PyLong_FromInt64(int64_t value)
.. versionadded:: 3.14
-.. c:function:: PyObject* PyLong_FromUnsignedLongLong(unsigned long long v)
-
- Return a new :c:type:`PyLongObject` object from a C :c:expr:`unsigned long long`,
- or ``NULL`` on failure.
-
-
.. c:function:: PyObject* PyLong_FromUInt32(uint32_t value)
PyObject* PyLong_FromUInt64(uint64_t value)