32.8. tabnanny
— 模糊缩进检测¶
源代码: Lib/tabnanny.py
目前,该模块旨在作为脚本调用。但是可以使用下面描述的 check()
函数将其导入IDE。
注解
此模块提供的API可能会在将来的版本中更改;此类更改可能无法向后兼容。
-
tabnanny.
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.
-
tabnanny.
verbose
¶ 此标志指明是否打印详细消息。 如果作为脚本调用则是通过
-v
选项来增加。
-
tabnanny.
filename_only
¶ 此旗标指明是否只打印包含空格相关问题文件的文件名。 如果作为脚本调用则是通过
-q
选项来设为真值。
-
exception
tabnanny.
NannyNag
¶ 如果检测到模糊缩进则由
process_tokens()
引发。 在check()
中捕获并处理。
参见
- 模块
tokenize
用于Python源代码的词法扫描程序。