diff options
author | Victor Stinner <vstinner@python.org> | 2020-04-17 17:13:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-17 17:13:06 (GMT) |
commit | 1a1bd2e23871619adc1405e1cdc7c1e61252fd2c (patch) | |
tree | 180c1a278ebff4e696cf213ab41857983aca75c4 /Modules/_xxsubinterpretersmodule.c | |
parent | 9f5fe7910f4a1bf5a425837d4915e332b945eb7b (diff) | |
download | cpython-1a1bd2e23871619adc1405e1cdc7c1e61252fd2c.zip cpython-1a1bd2e23871619adc1405e1cdc7c1e61252fd2c.tar.gz cpython-1a1bd2e23871619adc1405e1cdc7c1e61252fd2c.tar.bz2 |
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.
Diffstat (limited to 'Modules/_xxsubinterpretersmodule.c')
-rw-r--r-- | Modules/_xxsubinterpretersmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_xxsubinterpretersmodule.c b/Modules/_xxsubinterpretersmodule.c index b3616ae..fa35e14 100644 --- a/Modules/_xxsubinterpretersmodule.c +++ b/Modules/_xxsubinterpretersmodule.c @@ -2135,7 +2135,7 @@ static PyObject * interp_get_main(PyObject *self, PyObject *Py_UNUSED(ignored)) { // Currently, 0 is always the main interpreter. - PY_INT64_T id = 0; + int64_t id = 0; return _PyInterpreterID_New(id); } |