diff options
author | Tim Peters <tim.peters@gmail.com> | 2002-05-23 15:15:30 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2002-05-23 15:15:30 (GMT) |
commit | 8ac1495a6a1d18111a626cec0c7f2eb67df3edb3 (patch) | |
tree | 2d91993770d3a5b3f3668857983d9bf75276b14f /Lib/tabnanny.py | |
parent | f655328483b2e237cc2f71c1c308eceb2f30f6fd (diff) | |
download | cpython-8ac1495a6a1d18111a626cec0c7f2eb67df3edb3.zip cpython-8ac1495a6a1d18111a626cec0c7f2eb67df3edb3.tar.gz cpython-8ac1495a6a1d18111a626cec0c7f2eb67df3edb3.tar.bz2 |
Whitespace normalization.
Diffstat (limited to 'Lib/tabnanny.py')
-rwxr-xr-x | Lib/tabnanny.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Lib/tabnanny.py b/Lib/tabnanny.py index 5b10474..c9a1ccd 100755 --- a/Lib/tabnanny.py +++ b/Lib/tabnanny.py @@ -2,14 +2,14 @@ """The Tab Nanny despises ambiguous indentation. She knows no mercy. -tabnanny -- Detection of ambiguous indentation +tabnanny -- Detection of ambiguous indentation For the time being this module is intended to be called as a script. However it is possible to import it into an IDE and use the function -check() described below. +check() described below. Warning: The API provided by this module is likely to change in future -releases; such changes may not be backward compatible. +releases; such changes may not be backward compatible. """ # Released to the public domain, by Tim Peters, 15 April 1998. @@ -60,7 +60,7 @@ def main(): class NannyNag(Exception): """ Raised by tokeneater() if detecting an ambiguous indent. - Captured and handled in check(). + Captured and handled in check(). """ def __init__(self, lineno, msg, line): self.lineno, self.msg, self.line = lineno, msg, line @@ -73,14 +73,14 @@ class NannyNag(Exception): def check(file): """check(file_or_dir) - + If file_or_dir is a directory and not a symbolic link, then recursively descend the directory tree named by file_or_dir, checking all .py files along the way. If file_or_dir is an ordinary Python source file, it is checked for whitespace related problems. The diagnostic messages are - written to standard output using the print statement. + written to standard output using the print statement. """ - + if os.path.isdir(file) and not os.path.islink(file): if verbose: print "%s: listing directory" % `file` |