Searched refs:tabnanny (Results 1 – 11 of 11) sorted by relevance
/third_party/python/Lib/test/ |
D | test_tabnanny.py | 10 import tabnanny 97 self.assertEqual(tabnanny.format_witnesses(words), expected) 115 tabnanny.errprint(*args) 124 tabnanny.NannyNag(0, "foo", "bar"), 128 tabnanny.NannyNag(5, "testmsg", "testline"), 150 self.addCleanup(setattr, tabnanny, 'verbose', tabnanny.verbose) 151 tabnanny.verbose = 0 # Forcefully deactivating verbose mode. 162 tabnanny.check(dir_or_file) 186 tabnanny.verbose = 1 188 tabnanny.check(tmp_dir) [all …]
|
/third_party/python/Lib/idlelib/ |
D | runscript.py | 13 import tabnanny 57 if not self.tabnanny(filename): 61 def tabnanny(self, filename): member in ScriptBinding 65 tabnanny.process_tokens(tokenize.generate_tokens(f.readline)) 72 except tabnanny.NannyNag as nag: 132 if not self.tabnanny(filename):
|
D | ChangeLog | 103 * pyclbr.py, tabnanny.py: tabnanny and pyclbr are now found in /Lib 448 tabnanny.py, testcode.py, Icons/folder.gif, Icons/minusnode.gif, 477 loader.py, protocol.py, pyclbr.py, setup.py, spawn.py, tabnanny.py, 543 keydefs.py, loader.py, pyclbr.py, tabnanny.py, testcode.py, 565 keydefs.py, loader.py, pyclbr.py, tabnanny.py, testcode.py,
|
D | NEWS2x.txt | 138 - Some syntax errors were being caught by tokenize during the tabnanny 163 - Changing tokenize (39046) to detect dedent broke tabnanny check (since 1.2a1)
|
/third_party/python/Doc/library/ |
D | tabnanny.rst | 1 :mod:`tabnanny` --- Detection of ambiguous indentation 4 .. module:: tabnanny 13 **Source code:** :source:`Lib/tabnanny.py`
|
D | language.rst | 21 tabnanny.rst
|
/third_party/python/Tools/importbench/ |
D | importbench.py | 16 import tabnanny 96 tabnanny_wo_bytecode = _wo_bytecode(tabnanny) 131 tabnanny_writing_bytecode = _writing_bytecode(tabnanny) 161 tabnanny_using_bytecode = _using_bytecode(tabnanny)
|
/third_party/python/Tools/ |
D | README | 30 scripts A number of useful single-file programs, e.g. tabnanny.py
|
/third_party/python/Doc/faq/ |
D | windows.rst | 272 You may also run the :mod:`tabnanny` module to check a directory tree
|
/third_party/python/Doc/whatsnew/ |
D | 2.0.rst | 1117 * :mod:`tabnanny`: A module/script to check Python source code for ambiguous
|
/third_party/python/Misc/ |
D | HISTORY | 9247 - Issue #12811: tabnanny.check() now promptly closes checked files. Patch by 13382 - Issue #8774: tabnanny uses the encoding cookie (#coding:...) to use the 17481 - Bug #1224621: make tabnanny recognize IndentationErrors raised by tokenize. 22946 tabnanny.NannyNag, and xdrlib.Error. 26793 tabnanny - check Python sources for tab-width dependence. (Moved from 27860 * Lib/urllib.py: pleasing the tabnanny 28448 - tabnanny.py: added a -q ('quiet') option to tabnanny, which causes 29225 - The 1.5.1 tabnanny.py suffers an assert error if fed a script whose 29348 tabnanny.py and tabpolice.py below.) 29365 - There are two new tools in Tools/scripts: tabnanny.py and [all …]
|