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

mark.dickinson python-checkins at python.org
Tue Apr 13 18:31:35 CEST 2010


Author: mark.dickinson
Date: Tue Apr 13 18:31:35 2010
New Revision: 80059

Log:
Turn on thread debugging, just for giggles.

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	Tue Apr 13 18:31:35 2010
@@ -57,7 +57,7 @@
 
 
 #ifdef Py_DEBUG
-static int thread_debug = 0;
+static int thread_debug = 1;
 #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