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

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


Author: antoine.pitrou
Date: Sat Oct 24 22:30:34 2009
New Revision: 75682

Log:
Disable support for SunOS LWP



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:30:34 2009
@@ -109,6 +109,7 @@
 #endif
 
 #ifdef SUN_LWP
+#error SunOS lightweight processes are now unsupported, and code will be removed in 3.3.
 #include "thread_lwp.h"
 #endif
 


More information about the Python-checkins mailing list