[Python-checkins] CVS: python/dist/src/Lib tabnanny.py,1.9,1.10

Guido van Rossum guido@cnri.reston.va.us
Wed, 23 Feb 2000 10:32:22 -0500 (EST)


Update of /projects/cvsroot/python/dist/src/Lib
In directory eric:/projects/python/develop/guido/src/Lib

Modified Files:
	tabnanny.py 
Log Message:
Added tabnanny.py, by Tim Peters, formerly from Tools/scripts, to the
standard library.  Added some comments:

# XXX Note: this is now a standard library module.
# XXX The API needs to undergo changes however; the current code is too
# XXX script-like.  This will be addressed later.


Index: tabnanny.py
===================================================================
RCS file: /projects/cvsroot/python/dist/src/Lib/tabnanny.py,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -r1.9 -r1.10
*** tabnanny.py	1999/07/30 17:48:20	1.9
--- tabnanny.py	2000/02/23 15:32:19	1.10
***************
*** 5,8 ****
--- 5,12 ----
  # Released to the public domain, by Tim Peters, 15 April 1998.
  
+ # XXX Note: this is now a standard library module.
+ # XXX The API needs to undergo changes however; the current code is too
+ # XXX script-like.  This will be addressed later.
+ 
  __version__ = "6"