[Python-checkins] r63300 - in python/trunk: Lib/plat-irix5/SV.py Lib/plat-irix6/SV.py Lib/test/test_py3kwarn.py Misc/NEWS

brett.cannon python-checkins at python.org
Thu May 15 06:13:20 CEST 2008


Author: brett.cannon
Date: Thu May 15 06:13:19 2008
New Revision: 63300

Log:
Deprecate SV for removal in 3.0.

Modified:
   python/trunk/Lib/plat-irix5/SV.py
   python/trunk/Lib/plat-irix6/SV.py
   python/trunk/Lib/test/test_py3kwarn.py
   python/trunk/Misc/NEWS

Modified: python/trunk/Lib/plat-irix5/SV.py
==============================================================================
--- python/trunk/Lib/plat-irix5/SV.py	(original)
+++ python/trunk/Lib/plat-irix5/SV.py	Thu May 15 06:13:19 2008
@@ -1,3 +1,7 @@
+from warnings import warnpy3k
+warnpy3k("the SV module has been removed in Python 3.0", stacklevel=2)
+del warnpy3k
+
 NTSC_XMAX = 640
 NTSC_YMAX = 480
 PAL_XMAX = 768

Modified: python/trunk/Lib/plat-irix6/SV.py
==============================================================================
--- python/trunk/Lib/plat-irix6/SV.py	(original)
+++ python/trunk/Lib/plat-irix6/SV.py	Thu May 15 06:13:19 2008
@@ -1,3 +1,7 @@
+from warnings import warnpy3k
+warnpy3k("the SV module has been removed in Python 3.0", stacklevel=2)
+del warnpy3k
+
 NTSC_XMAX = 640
 NTSC_YMAX = 480
 PAL_XMAX = 768

Modified: python/trunk/Lib/test/test_py3kwarn.py
==============================================================================
--- python/trunk/Lib/test/test_py3kwarn.py	(original)
+++ python/trunk/Lib/test/test_py3kwarn.py	Thu May 15 06:13:19 2008
@@ -136,7 +136,7 @@
                                      'gl', 'ERRNO', 'FILE', 'FL', 'flp', 'fl',
                                      'fm', 'GET', 'GLWS', 'imgfile', 'IN',
                                      'IOCTL', 'jpeg', 'panel', 'panelparser',
-                                     'readcd'),
+                                     'readcd', 'SV'),
                           'darwin' : ('autoGIL', 'Carbon', 'OSATerminology',
                                       'icglue', 'Nav', 'MacOS', 'aepack',
                                       'aetools', 'aetypes', 'applesingle',

Modified: python/trunk/Misc/NEWS
==============================================================================
--- python/trunk/Misc/NEWS	(original)
+++ python/trunk/Misc/NEWS	Thu May 15 06:13:19 2008
@@ -32,6 +32,8 @@
 Library
 -------
 
+- The SV module from IRIX has been deprecated for removal in Python 3.0.
+
 - The readcd module from IRIX has been deprecated for removal in Python 3.0.
 
 - The panelparser module from IRIX has been deprecated for removal in


More information about the Python-checkins mailing list