summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorCharles-François Natali <neologix@free.fr>2011-10-12 19:07:54 (GMT)
committerCharles-François Natali <neologix@free.fr>2011-10-12 19:07:54 (GMT)
commit1f3ff7bc3f7cfd4e823e49dc193ab7fecb767c43 (patch)
tree938636c04083f9be5d9df818283975d90b574098 /Include
parent4394e0db24f38250d487adcbd8b85f314cb86829 (diff)
downloadcpython-1f3ff7bc3f7cfd4e823e49dc193ab7fecb767c43.zip
cpython-1f3ff7bc3f7cfd4e823e49dc193ab7fecb767c43.tar.gz
cpython-1f3ff7bc3f7cfd4e823e49dc193ab7fecb767c43.tar.bz2
Issue #13156: revert changeset f6feed6ec3f9, which was only relevant for native
TLS implementations, and fails with the ad-hoc TLS implementation when a thread doesn't have an auto thread state (e.g. a thread created outside of Python calling into a subinterpreter).
Diffstat (limited to 'Include')
-rw-r--r--Include/pystate.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/Include/pystate.h b/Include/pystate.h
index 729342c..b9fe61e 100644
--- a/Include/pystate.h
+++ b/Include/pystate.h
@@ -111,7 +111,6 @@ PyAPI_FUNC(void) PyThreadState_Clear(PyThreadState *);
PyAPI_FUNC(void) PyThreadState_Delete(PyThreadState *);
#ifdef WITH_THREAD
PyAPI_FUNC(void) PyThreadState_DeleteCurrent(void);
-PyAPI_FUNC(void) _PyGILState_Reinit(void);
#endif
PyAPI_FUNC(PyThreadState *) PyThreadState_Get(void);