Issue #11863: Remove support for legacy systems deprecated in Python 3.2

(following PEP 11).  These systems are systems using Mach C Threads,
SunOS lightweight processes, GNU pth threads and IRIX threads.
This commit is contained in:
Antoine Pitrou 2011-07-08 23:47:50 +02:00
parent 022ae22cc6
commit 370092071b
11 changed files with 315 additions and 1009 deletions

View file

@ -151,11 +151,6 @@ PyAPI_FUNC(PyObject*) _Py_Mangle(PyObject *p, PyObject *name);
#define Py_file_input 257
#define Py_eval_input 258
#ifdef HAVE_PTH
/* GNU pth user-space thread support */
#include <pth.h>
#endif
/* Define macros for inline documentation. */
#define PyDoc_VAR(name) static char name[]
#define PyDoc_STRVAR(name,str) PyDoc_VAR(name) = PyDoc_STR(str)