diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-04-13 18:06:36 -0400 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-04-13 18:06:36 -0400 |
commit | 7c0b44ec1725eeacdcfd02376e5d5a39ccdc5c79 (patch) | |
tree | 501438151187ec21ec48631351186f044c5297ae /Python/pystate.c | |
parent | 6688eb536ab7b88ade020b0e4e51e2ea74db82d1 (diff) | |
download | cpython-git-7c0b44ec1725eeacdcfd02376e5d5a39ccdc5c79.tar.gz |
move outside WITH_THREAD conditional
Diffstat (limited to 'Python/pystate.c')
-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 70ade98285..d7d127b255 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 */ - |