diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2013-08-02 18:39:46 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2013-08-02 18:39:46 (GMT) |
commit | 95db2e7b8a0477ddf60902ca0aacdafbb265e5a5 (patch) | |
tree | 082db54bac3ba572964b54da33bd757661e3ab20 /Include/pystate.h | |
parent | 865d12a2d9108b04f3417b0f772dfff5bf9840cb (diff) | |
download | cpython-95db2e7b8a0477ddf60902ca0aacdafbb265e5a5.zip cpython-95db2e7b8a0477ddf60902ca0aacdafbb265e5a5.tar.gz cpython-95db2e7b8a0477ddf60902ca0aacdafbb265e5a5.tar.bz2 |
Backout 62658d9d8926 (issue #10241): it causes a crash at shutdown when deallocating a Tkapp object.
Diffstat (limited to 'Include/pystate.h')
-rw-r--r-- | Include/pystate.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Include/pystate.h b/Include/pystate.h index e41fe4c..cd1d776 100644 --- a/Include/pystate.h +++ b/Include/pystate.h @@ -134,9 +134,6 @@ PyAPI_FUNC(int) PyState_AddModule(PyObject*, struct PyModuleDef*); PyAPI_FUNC(int) PyState_RemoveModule(struct PyModuleDef*); #endif PyAPI_FUNC(PyObject*) PyState_FindModule(struct PyModuleDef*); -#ifndef Py_LIMITED_API -PyAPI_FUNC(void) _PyState_ClearModules(void); -#endif PyAPI_FUNC(PyThreadState *) PyThreadState_New(PyInterpreterState *); PyAPI_FUNC(PyThreadState *) _PyThreadState_Prealloc(PyInterpreterState *); |