Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
b90db4ca
Commit
b90db4ca
authored
Apr 26, 2011
by
Victor Stinner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #11918: OS/2 and VMS are no more supported because of the lack of
maintainer.
parent
d972d8fe
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
14 additions
and
0 deletions
+14
-0
Doc/whatsnew/3.3.rst
Doc/whatsnew/3.3.rst
+6
-0
Misc/NEWS
Misc/NEWS
+3
-0
Modules/main.c
Modules/main.c
+1
-0
Modules/posixmodule.c
Modules/posixmodule.c
+2
-0
PC/os2emx/pyconfig.h
PC/os2emx/pyconfig.h
+2
-0
No files found.
Doc/whatsnew/3.3.rst
View file @
b90db4ca
...
...
@@ -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
=====================
...
...
Misc/NEWS
View file @
b90db4ca
...
...
@@ -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.
...
...
Modules/main.c
View file @
b90db4ca
...
...
@@ -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
...
...
Modules/posixmodule.c
View file @
b90db4ca
...
...
@@ -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
...
...
PC/os2emx/pyconfig.h
View file @
b90db4ca
#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.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment