[Python-checkins] CVS: python/dist/src/Lib TERMIOS.py,1.1,1.2

Fred L. Drake fdrake@users.sourceforge.net
Tue, 27 Feb 2001 13:51:50 -0800


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

Modified Files:
	TERMIOS.py 
Log Message:

No need to call filterwarnings() to suppress further warnings from this
module; that won't happen.


Index: TERMIOS.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/TERMIOS.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** TERMIOS.py	2001/02/27 21:35:39	1.1
--- TERMIOS.py	2001/02/27 21:51:47	1.2
***************
*** 7,13 ****
                DeprecationWarning)
  
- # Ignore further deprecation warnings about this module
- warnings.filterwarnings("ignore", "", DeprecationWarning, __name__)
- 
  
  # Export the constants known to the termios module:
--- 7,10 ----