[Python-checkins] r80072 - python/branches/py3k-issue4970/Python/thread.c

mark.dickinson python-checkins at python.org
Wed Apr 14 18:36:14 CEST 2010


Author: mark.dickinson
Date: Wed Apr 14 18:36:13 2010
New Revision: 80072

Log:
Turn thread debugging off again.

Modified:
   python/branches/py3k-issue4970/Python/thread.c

Modified: python/branches/py3k-issue4970/Python/thread.c
==============================================================================
--- python/branches/py3k-issue4970/Python/thread.c	(original)
+++ python/branches/py3k-issue4970/Python/thread.c	Wed Apr 14 18:36:13 2010
@@ -57,7 +57,7 @@
 
 
 #ifdef Py_DEBUG
-static int thread_debug = 1;
+static int thread_debug = 0;
 #define dprintf(args)	(void)((thread_debug & 1) && printf args)
 #define d2printf(args)	((thread_debug & 8) && printf args)
 #else


More information about the Python-checkins mailing list