summaryrefslogtreecommitdiffstats
path: root/Lib/tabnanny.py
diff options
context:
space:
mode:
authorXiang Zhang <angwerzx@126.com>2017-03-22 07:26:53 (GMT)
committerGitHub <noreply@github.com>2017-03-22 07:26:53 (GMT)
commit72c51136c6269112f4c37ef14f972c89b92c272c (patch)
tree10732348f719778037c356d67ed62572ab57fe6c /Lib/tabnanny.py
parentaf839fe2fef12dbbc8083fc7f01daee48a85a916 (diff)
downloadcpython-72c51136c6269112f4c37ef14f972c89b92c272c.zip
cpython-72c51136c6269112f4c37ef14f972c89b92c272c.tar.gz
cpython-72c51136c6269112f4c37ef14f972c89b92c272c.tar.bz2
fix function name in tabnanny documentation (GH-762)
Diffstat (limited to 'Lib/tabnanny.py')
-rwxr-xr-xLib/tabnanny.py2
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):