--- a/Plugins/CheckerPlugins/Tabnanny/Tabnanny.py Sun Sep 29 14:22:08 2013 +0200 +++ b/Plugins/CheckerPlugins/Tabnanny/Tabnanny.py Sun Sep 29 15:08:57 2013 +0200 @@ -53,6 +53,8 @@ class NannyNag(Exception): """ + Class implementing an exception for indentation issues. + Raised by tokeneater() if detecting an ambiguous indent. Captured and handled in check(). """ @@ -343,6 +345,7 @@ Function processing all tokens generated by a tokenizer run. @param tokens list of tokens + @exception NannyNag raised to indicate an indentation error """ INDENT = tokenize.INDENT DEDENT = tokenize.DEDENT