diff options
author | Jelle Zijlstra <jelle.zijlstra@gmail.com> | 2017-03-22 06:53:57 (GMT) |
---|---|---|
committer | Xiang Zhang <angwerzx@126.com> | 2017-03-22 06:53:57 (GMT) |
commit | 75b6cf879fab58c0576d5415eaf38d92bfd678ab (patch) | |
tree | a61b23decbadc192561e520d596cc76b963dfee4 /Lib/tabnanny.py | |
parent | d7fa6b259e00fca04dbf816bfcf4115fdda14bb7 (diff) | |
download | cpython-75b6cf879fab58c0576d5415eaf38d92bfd678ab.zip cpython-75b6cf879fab58c0576d5415eaf38d92bfd678ab.tar.gz cpython-75b6cf879fab58c0576d5415eaf38d92bfd678ab.tar.bz2 |
fix function name in tabnanny documentation (GH-759)
Diffstat (limited to 'Lib/tabnanny.py')
-rwxr-xr-x | Lib/tabnanny.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/tabnanny.py b/Lib/tabnanny.py index 46e0f56..bfb670c 100755 --- a/Lib/tabnanny.py +++ b/Lib/tabnanny.py @@ -59,7 +59,7 @@ def main(): class NannyNag(Exception): """ - Raised by tokeneater() if detecting an ambiguous indent. + Raised by process_tokens() if detecting an ambiguous indent. Captured and handled in check(). """ def __init__(self, lineno, msg, line): |