[Python-checkins] cpython (3.2): move outside WITH_THREAD conditional

benjamin.peterson python-checkins at python.org
Sat Apr 14 00:07:03 CEST 2012


http://hg.python.org/cpython/rev/49f52d14b65c
changeset:   76291:49f52d14b65c
branch:      3.2
parent:      76285:5cc359804d61
user:        Benjamin Peterson <benjamin at python.org>
date:        Fri Apr 13 18:06:36 2012 -0400
summary:
  move outside WITH_THREAD conditional

files:
  Python/pystate.c |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Python/pystate.c b/Python/pystate.c
--- a/Python/pystate.c
+++ b/Python/pystate.c
@@ -726,10 +726,10 @@
         PyEval_SaveThread();
 }
 
+#endif /* WITH_THREAD */
+
 #ifdef __cplusplus
 }
 #endif
 
-#endif /* WITH_THREAD */
 
-

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list