[Python-checkins] python/dist/src/Lib whrandom.py,1.19,1.20

fdrake@sourceforge.net fdrake@sourceforge.net
Thu, 11 Apr 2002 13:57:32 -0700


Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv13167

Modified Files:
	whrandom.py 
Log Message:
Guido sez to remove the deprecation warning for a year.
The deprecation is now listed in PEP 4.


Index: whrandom.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/whrandom.py,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -d -r1.19 -r1.20
*** whrandom.py	10 Apr 2002 01:45:11 -0000	1.19
--- whrandom.py	11 Apr 2002 20:57:30 -0000	1.20
***************
*** 37,45 ****
  # Adrian Baddeley.
  
- import warnings
- warnings.warn("the whrandom module is deprecated; please use random",
-               DeprecationWarning)
- del warnings
- 
  
  class whrandom:
--- 37,40 ----