diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-04-13 22:06:36 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-04-13 22:06:36 (GMT) |
commit | 7c0b44ec1725eeacdcfd02376e5d5a39ccdc5c79 (patch) | |
tree | 501438151187ec21ec48631351186f044c5297ae /Python | |
parent | 6688eb536ab7b88ade020b0e4e51e2ea74db82d1 (diff) | |
download | cpython-7c0b44ec1725eeacdcfd02376e5d5a39ccdc5c79.zip cpython-7c0b44ec1725eeacdcfd02376e5d5a39ccdc5c79.tar.gz cpython-7c0b44ec1725eeacdcfd02376e5d5a39ccdc5c79.tar.bz2 |
move outside WITH_THREAD conditional
Diffstat (limited to 'Python')
-rw-r--r-- | Python/pystate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/pystate.c b/Python/pystate.c index 70ade98..d7d127b 100644 --- a/Python/pystate.c +++ b/Python/pystate.c @@ -653,10 +653,10 @@ PyGILState_Release(PyGILState_STATE oldstate) PyEval_SaveThread(); } +#endif /* WITH_THREAD */ + #ifdef __cplusplus } #endif -#endif /* WITH_THREAD */ - |