From dc6883365be8caf2f68463fad7cfc4c482a53105 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Wed, 23 Feb 2000 15:32:19 +0000 Subject: 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. --- Lib/tabnanny.py | 4 ++++ Tools/idle/tabnanny.py | 4 ++++ 2 files changed, 8 insertions(+) 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 diff --git a/Tools/idle/tabnanny.py b/Tools/idle/tabnanny.py index c5adfb5..8d3eab5 100755 --- a/Tools/idle/tabnanny.py +++ b/Tools/idle/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 -- cgit v0.12