diff options
author | Guido van Rossum <guido@python.org> | 2000-02-23 15:32:19 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-02-23 15:32:19 (GMT) |
commit | dc6883365be8caf2f68463fad7cfc4c482a53105 (patch) | |
tree | fd49077eb2583dca0ac3c561d5ce306824c6c21b /Lib/tabnanny.py | |
parent | 89af0776cd361a47c3b2035f6fcb6968447c56b7 (diff) | |
download | cpython-dc6883365be8caf2f68463fad7cfc4c482a53105.zip cpython-dc6883365be8caf2f68463fad7cfc4c482a53105.tar.gz cpython-dc6883365be8caf2f68463fad7cfc4c482a53105.tar.bz2 |
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.
Diffstat (limited to 'Lib/tabnanny.py')
-rwxr-xr-x | Lib/tabnanny.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/tabnanny.py b/Lib/tabnanny.py index c5adfb5..8d3eab5 100755 --- a/Lib/tabnanny.py +++ b/Lib/tabnanny.py @@ -4,6 +4,10 @@ # 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" import os |