]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #11918: OS/2 and VMS are no more supported because of the lack of
authorVictor Stinner <victor.stinner@haypocalc.com>
Tue, 26 Apr 2011 20:48:24 +0000 (22:48 +0200)
committerVictor Stinner <victor.stinner@haypocalc.com>
Tue, 26 Apr 2011 20:48:24 +0000 (22:48 +0200)
maintainer.

Doc/whatsnew/3.3.rst
Misc/NEWS
Modules/main.c
Modules/posixmodule.c
PC/os2emx/pyconfig.h

index d3c9a97fc1ff0ffd13ef3bd3ac936d53239d0e03..a2a9c19cef0a554e0b7a174bf83baa78fc78b26a 100644 (file)
@@ -136,6 +136,12 @@ Changes to Python's build process and to the C API include:
 * Stub
 
 
+Unsupported operating systems
+=============================
+
+OS/2 and VMS are no more supported because of the lack of maintainer.
+
+
 Porting to Python 3.3
 =====================
 
index 0bba1a365197969b8ea6f06a3194c7c468e07c70..25b316c876aba477529574717bd1873d09b4e8c8 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.3 Alpha 1?
 Core and Builtins
 -----------------
 
+- Issue #11918: OS/2 and VMS are no more supported because of the lack of
+  maintainer.
+
 - Issue #6780: fix starts/endswith error message to mention that tuples are
   accepted too.
 
index 9137c85e227d1d6a69fc7dc506a0f6fb152551e9..747c12f93855b39798447bdd35c2a69d63c193cb 100644 (file)
@@ -6,6 +6,7 @@
 #include <locale.h>
 
 #ifdef __VMS
+#error "PEP 11: VMS is now unsupported, code will be removed in Python 3.4"
 #include <unixlib.h>
 #endif
 
index 2eb3e925537a6fe9da32f187a20b3d0419cb321f..396243e0a57ee58268173ff32d052d4314e2a5b5 100644 (file)
@@ -30,6 +30,7 @@
 #include "Python.h"
 
 #if defined(__VMS)
+#    error "PEP 11: VMS is now unsupported, code will be removed in Python 3.4"
 #    include <unixio.h>
 #endif /* defined(__VMS) */
 
@@ -45,6 +46,7 @@ corresponding Unix manual entries for more information on calls.");
 
 
 #if defined(PYOS_OS2)
+#error "PEP 11: OS/2 is now unsupported, code will be removed in Python 3.4"
 #define  INCL_DOS
 #define  INCL_DOSERRORS
 #define  INCL_DOSPROCESS
index 380e19c08ddb6477ae1c427e9a364a1b47129b8d..e56105af574a42bc92a65a3b4bc502907f99710e 100644 (file)
@@ -1,6 +1,8 @@
 #ifndef Py_CONFIG_H
 #define Py_CONFIG_H
 
+#error "PEP 11: OS/2 is now unsupported, code will be removed in Python 3.4"
+
 /* config.h.
  * At some time in the past, generated automatically by/from configure.
  * now maintained manually.