]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-38858: Allocate small integers on the heap (GH-17301)
authorVictor Stinner <vstinner@python.org>
Thu, 21 Nov 2019 07:51:59 +0000 (08:51 +0100)
committerGitHub <noreply@github.com>
Thu, 21 Nov 2019 07:51:59 +0000 (08:51 +0100)
commit5dcc06f6e0d7b5d6589085692b86c63e35e2325e
treef19e5bb09025417222152a0f3eb73d809273b1e6
parentd67279147ace3b63187e5d75a15c345264f39e85
bpo-38858: Allocate small integers on the heap (GH-17301)

Allocate small Python integers (small_ints of longobject.c) on the
heap, rather than using static objects.
Objects/longobject.c