Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b90db4c

Browse files
author
Victor Stinner
committed
Issue #11918: OS/2 and VMS are no more supported because of the lack of
maintainer.
1 parent d972d8f commit b90db4c

5 files changed

Lines changed: 14 additions & 0 deletions

File tree

Doc/whatsnew/3.3.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff 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+
139145
Porting to Python 3.3
140146
=====================
141147

Misc/NEWS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ What's New in Python 3.3 Alpha 1?
1010
Core 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

Modules/main.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
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

Modules/posixmodule.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
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

PC/os2emx/pyconfig.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
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.

0 commit comments

Comments
 (0)