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

antoine.pitrou python-checkins at python.org
Sat Oct 24 22:24:16 CEST 2009


Author: antoine.pitrou
Date: Sat Oct 24 22:24:16 2009
New Revision: 75680

Log:
Disable support for Mach C Threads.



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

Modified: python/branches/py3k/Python/thread.c
==============================================================================
--- python/branches/py3k/Python/thread.c	(original)
+++ python/branches/py3k/Python/thread.c	Sat Oct 24 22:24:16 2009
@@ -122,6 +122,7 @@
 #endif
 
 #ifdef C_THREADS
+#error Mach C Threads are now unsupported, and code will be removed in 3.3.
 #include "thread_cthread.h"
 #endif
 


More information about the Python-checkins mailing list