Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
b90db4ca
Kaydet (Commit)
b90db4ca
authored
Nis 26, 2011
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #11918: OS/2 and VMS are no more supported because of the lack of
maintainer.
üst
d972d8fe
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
14 additions
and
0 deletions
+14
-0
3.3.rst
Doc/whatsnew/3.3.rst
+6
-0
NEWS
Misc/NEWS
+3
-0
main.c
Modules/main.c
+1
-0
posixmodule.c
Modules/posixmodule.c
+2
-0
pyconfig.h
PC/os2emx/pyconfig.h
+2
-0
No files found.
Doc/whatsnew/3.3.rst
Dosyayı görüntüle @
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
Dosyayı görüntüle @
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
Dosyayı görüntüle @
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
Dosyayı görüntüle @
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
Dosyayı görüntüle @
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