Message134029
| Author |
vstinner |
| Recipients |
vstinner |
| Date |
2011年04月19日.09:45:42 |
| SpamBayes Score |
0.14431697 |
| Marked as misclassified |
No |
| Message-id |
<1303206344.55.0.955794008969.issue11876@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
Python/thread.c contains the following messages:
#ifdef SGI_THREADS
#error SGI Irix threads are now unsupported, and code will be removed in 3.3.
#include "thread_sgi.h"
#endif
#ifdef SUN_LWP
#error SunOS lightweight processes are now unsupported, and code will be removed in 3.3.
#include "thread_lwp.h"
#endif
#ifdef HAVE_PTH
#error GNU pth threads are now unsupported, and code will be removed in 3.3.
#include "thread_pth.h"
#undef _POSIX_THREADS
#endif
#ifdef C_THREADS
#error Mach C Threads are now unsupported, and code will be removed in 3.3.
#include "thread_cthread.h"
#endif |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2011年04月19日 09:45:44 | vstinner | set | recipients:
+ vstinner |
| 2011年04月19日 09:45:44 | vstinner | set | messageid: <1303206344.55.0.955794008969.issue11876@psf.upfronthosting.co.za> |
| 2011年04月19日 09:45:43 | vstinner | link | issue11876 messages |
| 2011年04月19日 09:45:42 | vstinner | create |
|