diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-12-19 22:51:00 +0200 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-12-19 22:51:00 +0200 |
commit | b51020c0fe5e6cd422007295c987cdcd91ccf8d0 (patch) | |
tree | 80726d5a40325a52f41efec20c02deb6973240ac /Python/pystate.c | |
parent | 32b51a258d6fdd15125224c85a3ebd5bb44314ce (diff) | |
parent | 0e7e0b674796f0054abea6291629195ed3e1378c (diff) | |
download | cpython-b51020c0fe5e6cd422007295c987cdcd91ccf8d0.tar.gz |
Use correct PyGC_Head size in tests for issue #25421.
Diffstat (limited to 'Python/pystate.c')
-rw-r--r-- | Python/pystate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pystate.c b/Python/pystate.c index 7e0267ae1d..50edfbb474 100644 --- a/Python/pystate.c +++ b/Python/pystate.c @@ -686,7 +686,7 @@ PyThreadState_IsCurrent(PyThreadState *tstate) } /* Internal initialization/finalization functions called by - Py_Initialize/Py_Finalize + Py_Initialize/Py_FinalizeEx */ void _PyGILState_Init(PyInterpreterState *i, PyThreadState *t) |