diff options
Diffstat (limited to 'Lib')
-rwxr-xr-x | Lib/plat-irix5/CL.py | 4 | ||||
-rwxr-xr-x | Lib/plat-irix5/CL_old.py | 4 | ||||
-rw-r--r-- | Lib/plat-irix6/CL.py | 4 | ||||
-rw-r--r-- | Lib/test/test_py3kwarn.py | 2 |
4 files changed, 13 insertions, 1 deletions
diff --git a/Lib/plat-irix5/CL.py b/Lib/plat-irix5/CL.py index 23259c5..15130e4 100755 --- a/Lib/plat-irix5/CL.py +++ b/Lib/plat-irix5/CL.py @@ -1,5 +1,9 @@ # 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: diff --git a/Lib/plat-irix5/CL_old.py b/Lib/plat-irix5/CL_old.py index 967b497..892f86c 100755 --- a/Lib/plat-irix5/CL_old.py +++ b/Lib/plat-irix5/CL_old.py @@ -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 diff --git a/Lib/plat-irix6/CL.py b/Lib/plat-irix6/CL.py index 23259c5..15130e4 100644 --- a/Lib/plat-irix6/CL.py +++ b/Lib/plat-irix6/CL.py @@ -1,5 +1,9 @@ # 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: diff --git a/Lib/test/test_py3kwarn.py b/Lib/test/test_py3kwarn.py index 2b9eac4..78dd53d 100644 --- a/Lib/test/test_py3kwarn.py +++ b/Lib/test/test_py3kwarn.py @@ -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', |