]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-40302: Replace PY_INT64_T with int64_t (GH-19573)
authorVictor Stinner <vstinner@python.org>
Fri, 17 Apr 2020 17:13:06 +0000 (19:13 +0200)
committerGitHub <noreply@github.com>
Fri, 17 Apr 2020 17:13:06 +0000 (19:13 +0200)
commit1a1bd2e23871619adc1405e1cdc7c1e61252fd2c
tree180c1a278ebff4e696cf213ab41857983aca75c4
parent9f5fe7910f4a1bf5a425837d4915e332b945eb7b
bpo-40302: Replace PY_INT64_T with int64_t (GH-19573)

* Replace PY_INT64_T with int64_t
* Replace PY_UINT32_T with uint32_t
* Replace PY_UINT64_T with uint64_t

sha3module.c no longer checks if PY_UINT64_T is defined since it's
always defined and uint64_t is always available on platforms
supported by Python.
Doc/c-api/init.rst
Include/internal/pycore_interp.h
Modules/_randommodule.c
Modules/_sha3/sha3module.c
Modules/_xxsubinterpretersmodule.c
Objects/interpreteridobject.c
Python/pystate.c