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

brett.cannon python-checkins at python.org
Thu May 15 06:17:36 CEST 2008


Author: brett.cannon
Date: Thu May 15 06:17:35 2008
New Revision: 63306

Log:
Deprecate WAIT for removal in 3.0.

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

Modified: python/trunk/Lib/plat-irix5/WAIT.py
==============================================================================
--- python/trunk/Lib/plat-irix5/WAIT.py	(original)
+++ python/trunk/Lib/plat-irix5/WAIT.py	Thu May 15 06:17:35 2008
@@ -1,4 +1,8 @@
 # Generated by h2py from /usr/include/sys/wait.h
+from warnings import warnpy3k
+warnpy3k("the WAIT module has been removed in Python 3.0", stacklevel=2)
+del warnpy3k
+
 _WSTOPPED = 0177
 WNOHANG = 0100
 WEXITED = 0001

Modified: python/trunk/Lib/plat-irix6/WAIT.py
==============================================================================
--- python/trunk/Lib/plat-irix6/WAIT.py	(original)
+++ python/trunk/Lib/plat-irix6/WAIT.py	Thu May 15 06:17:35 2008
@@ -1,4 +1,7 @@
 # Generated by h2py from /usr/include/sys/wait.h
+from warnings import warnpy3k
+warnpy3k("the WAIT module has been removed in Python 3.0", stacklevel=2)
+del warnpy3k
 
 # Included from standards.h
 def _W_INT(i): return (i)

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:17:35 2008
@@ -136,7 +136,7 @@
                                      'gl', 'ERRNO', 'FILE', 'FL', 'flp', 'fl',
                                      'fm', 'GET', 'GLWS', 'imgfile', 'IN',
                                      'IOCTL', 'jpeg', 'panel', 'panelparser',
-                                     'readcd', 'SV', 'torgb'),
+                                     'readcd', 'SV', 'torgb', 'WAIT'),
                           '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:17:35 2008
@@ -32,6 +32,8 @@
 Library
 -------
 
+- The WAIT module from IRIX has been deprecated for removal in Python 3.0.
+
 - The torgb module from IRIX has been deprecated for removal in Python 3.0.
 
 - The SV module from IRIX has been deprecated for removal in Python 3.0.


More information about the Python-checkins mailing list