Thanks to visit codestin.com Credit goes to github.com
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 47441f0 commit 5eb7cd3Copy full SHA for 5eb7cd3
1 file changed
Doc/c-api/long.rst
@@ -40,9 +40,11 @@ distinguished from a number. Use :c:func:`PyErr_Occurred` to disambiguate.
40
41
Return a new :c:type:`PyLongObject` object from *v*, or ``NULL`` on failure.
42
43
- The current implementation keeps an array of integer objects for all integers
44
- between ``-5`` and ``256``. When you create an int in that range you actually
45
- just get back a reference to the existing object.
+ .. impl-detail::
+
+ CPython keeps an array of integer objects for all integers
46
+ between ``-5`` and ``256``. When you create an int in that range
47
+ you actually just get back a reference to the existing object.
48
49
50
.. c:function:: PyObject* PyLong_FromUnsignedLong(unsigned long v)
0 commit comments