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
650f5161
Kaydet (Commit)
650f5161
authored
May 14, 2008
tarafından
Brett Cannon
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Deprecate CL, CL_old, and cl for 3.0.
üst
54c77aa4
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
21 additions
and
2 deletions
+21
-2
CL.py
Lib/plat-irix5/CL.py
+4
-0
CL_old.py
Lib/plat-irix5/CL_old.py
+4
-0
CL.py
Lib/plat-irix6/CL.py
+4
-0
test_py3kwarn.py
Lib/test/test_py3kwarn.py
+1
-1
NEWS
Misc/NEWS
+3
-0
clmodule.c
Modules/clmodule.c
+5
-1
No files found.
Lib/plat-irix5/CL.py
Dosyayı görüntüle @
650f5161
# Backward compatible module CL.
# All relevant symbols are now defined in the module cl.
from
warnings
import
warnpy3k
warnpy3k
(
"the CL module has been removed in Python 3.0"
,
stacklevel
=
2
)
del
warnpy3k
try
:
from
cl
import
*
except
ImportError
:
...
...
Lib/plat-irix5/CL_old.py
Dosyayı görüntüle @
650f5161
...
...
@@ -8,6 +8,10 @@
#
# originalFormat parameter values
#
from
warnings
import
warnpy3k
warnpy3k
(
"the CL_old module has been removed in Python 3.0"
,
stacklevel
=
2
)
del
warnpy3k
MAX_NUMBER_OF_ORIGINAL_FORMATS
=
32
# Audio
...
...
Lib/plat-irix6/CL.py
Dosyayı görüntüle @
650f5161
# Backward compatible module CL.
# All relevant symbols are now defined in the module cl.
from
warnings
import
warnpy3k
warnpy3k
(
"the CL module has been removed in Python 3.0"
,
stacklevel
=
2
)
del
warnpy3k
try
:
from
cl
import
*
except
ImportError
:
...
...
Lib/test/test_py3kwarn.py
Dosyayı görüntüle @
650f5161
...
...
@@ -132,7 +132,7 @@ class TestStdlibRemovals(unittest.TestCase):
'Bastion'
,
'compiler'
,
'dircache'
,
'fpformat'
,
'ihooks'
,
'mhlib'
)
inclusive_platforms
=
{
'irix'
:
(
'pure'
,
'AL'
,
'al'
,
'CD'
,
'cd'
,
'cddb'
,
'cdplayer'
),
'cdplayer'
,
'CL'
,
'cl'
),
'darwin'
:
(
'autoGIL'
,
'Carbon'
,
'OSATerminology'
,
'icglue'
,
'Nav'
,
'MacOS'
,
'aepack'
,
'aetools'
,
'aetypes'
,
'applesingle'
,
...
...
Misc/NEWS
Dosyayı görüntüle @
650f5161
...
...
@@ -32,6 +32,9 @@ Extension Modules
Library
-------
- The CL, CL_old, and cl modules for IRIX have been deprecated for removal in
Python 3.0.
- The cdplayer module for IRIX has been deprecated for removal in Python 3.0.
- The cddb module for IRIX has been deprecated for removal in Python 3.0.
...
...
Modules/clmodule.c
Dosyayı görüntüle @
650f5161
...
...
@@ -961,7 +961,11 @@ void
initcl
(
void
)
{
PyObject
*
m
,
*
d
,
*
x
;
if
(
PyErr_WarnPy3k
(
"the cl module has been removed in "
"Python 3.0"
,
2
)
<
0
)
return
;
m
=
Py_InitModule
(
"cl"
,
cl_methods
);
if
(
m
==
NULL
)
return
;
...
...
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