[Python-checkins] python/nondist/peps pep-0004.txt,1.11,1.12

akuchling at users.sourceforge.net akuchling at users.sourceforge.net
Tue Aug 10 15:27:35 CEST 2004


Update of /cvsroot/python/python/nondist/peps
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7627

Modified Files:
	pep-0004.txt 
Log Message:
Add unlisted modules

Index: pep-0004.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/peps/pep-0004.txt,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** pep-0004.txt	2 Jun 2004 14:48:11 -0000	1.11
--- pep-0004.txt	10 Aug 2004 13:27:32 -0000	1.12
***************
*** 137,140 ****
--- 137,166 ----
      Documentation: TBD
  
+     Module name:   TERMIOS.py
+     Rationale:     The constants in this file are now in the 'termios' module.
+     Date:          10-Aug-2004
+     Documentation: This module has been documented as obsolete since
+                    Python 2.1, but listing in this PEP was neglected.
+ 
+     Module name:   statcache
+     Rationale:     Using the cache can be fragile and error-prone;
+                    applications should just use os.stat() directly.
+     Date:          10-Aug-2004
+     Documentation: This module has been documented as obsolete since
+                    Python 2.2, but listing in this PEP was neglected.
+ 
+     Module name:   mpz
+     Rationale:     Third-party packages provide similiar features
+                    and wrap more of GMP's API.
+     Date:          10-Aug-2004
+     Documentation: This module has been documented as obsolete since
+                    Python 2.2, but listing in this PEP was neglected.
+ 
+     Module name:   xreadlines
+     Rationale:     Using 'for line in file', introduced in 2.3, is preferable.
+     Date:          10-Aug-2004
+     Documentation: This module has been documented as obsolete since
+                    Python 2.3, but listing in this PEP was neglected.
+ 
  
  Undeprecated modules



More information about the Python-checkins mailing list