File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -136,6 +136,12 @@ Changes to Python's build process and to the C API include:
136136* Stub
137137
138138
139+ Unsupported operating systems
140+ =============================
141+
142+ OS/2 and VMS are no more supported because of the lack of maintainer.
143+
144+
139145Porting to Python 3.3
140146=====================
141147
Original file line number Diff line number Diff line change @@ -10,6 +10,9 @@ What's New in Python 3.3 Alpha 1?
1010Core and Builtins
1111-----------------
1212
13+ - Issue #11918: OS/2 and VMS are no more supported because of the lack of
14+ maintainer.
15+
1316- Issue #6780: fix starts/endswith error message to mention that tuples are
1417 accepted too.
1518
Original file line number Diff line number Diff line change 66#include <locale.h>
77
88#ifdef __VMS
9+ #error "PEP 11: VMS is now unsupported, code will be removed in Python 3.4"
910#include <unixlib.h>
1011#endif
1112
Original file line number Diff line number Diff line change 3030#include "Python.h"
3131
3232#if defined(__VMS )
33+ # error "PEP 11: VMS is now unsupported, code will be removed in Python 3.4"
3334# include <unixio.h>
3435#endif /* defined(__VMS) */
3536
@@ -45,6 +46,7 @@ corresponding Unix manual entries for more information on calls.");
4546
4647
4748#if defined(PYOS_OS2 )
49+ #error "PEP 11: OS/2 is now unsupported, code will be removed in Python 3.4"
4850#define INCL_DOS
4951#define INCL_DOSERRORS
5052#define INCL_DOSPROCESS
Original file line number Diff line number Diff line change 11#ifndef Py_CONFIG_H
22#define Py_CONFIG_H
33
4+ #error "PEP 11: OS/2 is now unsupported, code will be removed in Python 3.4"
5+
46/* config.h.
57 * At some time in the past, generated automatically by/from configure.
68 * now maintained manually.
You can’t perform that action at this time.
0 commit comments