| Guido van Rossum | 9ab75cb | 1998-03-31 14:31:39 +0000 | [diff] [blame] | 1 | #! /usr/bin/env python | 
 | 2 |  | 
| Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 3 | """The Tab Nanny despises ambiguous indentation.  She knows no mercy. | 
 | 4 |  | 
| Tim Peters | 8ac1495 | 2002-05-23 15:15:30 +0000 | [diff] [blame] | 5 | tabnanny -- Detection of ambiguous indentation | 
| Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 6 |  | 
 | 7 | For the time being this module is intended to be called as a script. | 
 | 8 | However it is possible to import it into an IDE and use the function | 
| Tim Peters | 8ac1495 | 2002-05-23 15:15:30 +0000 | [diff] [blame] | 9 | check() described below. | 
| Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 10 |  | 
 | 11 | Warning: The API provided by this module is likely to change in future | 
| Tim Peters | 8ac1495 | 2002-05-23 15:15:30 +0000 | [diff] [blame] | 12 | releases; such changes may not be backward compatible. | 
| Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 13 | """ | 
| Guido van Rossum | 9ab75cb | 1998-03-31 14:31:39 +0000 | [diff] [blame] | 14 |  | 
| Guido van Rossum | aa2a7a4 | 1998-06-09 19:02:21 +0000 | [diff] [blame] | 15 | # Released to the public domain, by Tim Peters, 15 April 1998. | 
| Guido van Rossum | 9ab75cb | 1998-03-31 14:31:39 +0000 | [diff] [blame] | 16 |  | 
| Guido van Rossum | dc68833 | 2000-02-23 15:32:19 +0000 | [diff] [blame] | 17 | # XXX Note: this is now a standard library module. | 
 | 18 | # XXX The API needs to undergo changes however; the current code is too | 
 | 19 | # XXX script-like.  This will be addressed later. | 
 | 20 |  | 
| Guido van Rossum | a74c556 | 1999-07-30 17:48:20 +0000 | [diff] [blame] | 21 | __version__ = "6" | 
| Guido van Rossum | 9ab75cb | 1998-03-31 14:31:39 +0000 | [diff] [blame] | 22 |  | 
 | 23 | import os | 
 | 24 | import sys | 
 | 25 | import getopt | 
 | 26 | import tokenize | 
| Tim Peters | 4efb6e9 | 2001-06-29 23:51:08 +0000 | [diff] [blame] | 27 | if not hasattr(tokenize, 'NL'): | 
 | 28 |     raise ValueError("tokenize.NL doesn't exist -- tokenize module too old") | 
| Guido van Rossum | 9ab75cb | 1998-03-31 14:31:39 +0000 | [diff] [blame] | 29 |  | 
| Guido van Rossum | c5943b1 | 2001-08-07 17:19:25 +0000 | [diff] [blame] | 30 | __all__ = ["check", "NannyNag", "process_tokens"] | 
| Skip Montanaro | 40fc160 | 2001-03-01 04:27:19 +0000 | [diff] [blame] | 31 |  | 
| Guido van Rossum | 9ab75cb | 1998-03-31 14:31:39 +0000 | [diff] [blame] | 32 | verbose = 0 | 
| Andrew M. Kuchling | dc86a4e | 1998-12-18 13:56:58 +0000 | [diff] [blame] | 33 | filename_only = 0 | 
| Guido van Rossum | 9ab75cb | 1998-03-31 14:31:39 +0000 | [diff] [blame] | 34 |  | 
| Guido van Rossum | f9a6d7d | 1998-09-14 16:22:21 +0000 | [diff] [blame] | 35 | def errprint(*args): | 
 | 36 |     sep = "" | 
 | 37 |     for arg in args: | 
 | 38 |         sys.stderr.write(sep + str(arg)) | 
 | 39 |         sep = " " | 
 | 40 |     sys.stderr.write("\n") | 
 | 41 |  | 
| Guido van Rossum | 9ab75cb | 1998-03-31 14:31:39 +0000 | [diff] [blame] | 42 | def main(): | 
| Andrew M. Kuchling | dc86a4e | 1998-12-18 13:56:58 +0000 | [diff] [blame] | 43 |     global verbose, filename_only | 
| Guido van Rossum | 9ab75cb | 1998-03-31 14:31:39 +0000 | [diff] [blame] | 44 |     try: | 
| Andrew M. Kuchling | dc86a4e | 1998-12-18 13:56:58 +0000 | [diff] [blame] | 45 |         opts, args = getopt.getopt(sys.argv[1:], "qv") | 
| Guido van Rossum | 9ab75cb | 1998-03-31 14:31:39 +0000 | [diff] [blame] | 46 |     except getopt.error, msg: | 
| Guido van Rossum | f9a6d7d | 1998-09-14 16:22:21 +0000 | [diff] [blame] | 47 |         errprint(msg) | 
| Guido van Rossum | 8053d89 | 1998-04-06 14:45:26 +0000 | [diff] [blame] | 48 |         return | 
| Guido van Rossum | 9ab75cb | 1998-03-31 14:31:39 +0000 | [diff] [blame] | 49 |     for o, a in opts: | 
| Andrew M. Kuchling | dc86a4e | 1998-12-18 13:56:58 +0000 | [diff] [blame] | 50 |         if o == '-q': | 
 | 51 |             filename_only = filename_only + 1 | 
| Guido van Rossum | 9ab75cb | 1998-03-31 14:31:39 +0000 | [diff] [blame] | 52 |         if o == '-v': | 
 | 53 |             verbose = verbose + 1 | 
| Guido van Rossum | 8053d89 | 1998-04-06 14:45:26 +0000 | [diff] [blame] | 54 |     if not args: | 
| Guido van Rossum | f9a6d7d | 1998-09-14 16:22:21 +0000 | [diff] [blame] | 55 |         errprint("Usage:", sys.argv[0], "[-v] file_or_directory ...") | 
| Guido van Rossum | 8053d89 | 1998-04-06 14:45:26 +0000 | [diff] [blame] | 56 |         return | 
| Guido van Rossum | 9ab75cb | 1998-03-31 14:31:39 +0000 | [diff] [blame] | 57 |     for arg in args: | 
 | 58 |         check(arg) | 
 | 59 |  | 
| Neal Norwitz | f74e46c | 2002-03-31 13:59:18 +0000 | [diff] [blame] | 60 | class NannyNag(Exception): | 
| Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 61 |     """ | 
 | 62 |     Raised by tokeneater() if detecting an ambiguous indent. | 
| Tim Peters | 8ac1495 | 2002-05-23 15:15:30 +0000 | [diff] [blame] | 63 |     Captured and handled in check(). | 
| Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 64 |     """ | 
| Guido van Rossum | 9ab75cb | 1998-03-31 14:31:39 +0000 | [diff] [blame] | 65 |     def __init__(self, lineno, msg, line): | 
 | 66 |         self.lineno, self.msg, self.line = lineno, msg, line | 
 | 67 |     def get_lineno(self): | 
 | 68 |         return self.lineno | 
 | 69 |     def get_msg(self): | 
 | 70 |         return self.msg | 
 | 71 |     def get_line(self): | 
 | 72 |         return self.line | 
 | 73 |  | 
 | 74 | def check(file): | 
| Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 75 |     """check(file_or_dir) | 
| Tim Peters | 8ac1495 | 2002-05-23 15:15:30 +0000 | [diff] [blame] | 76 |  | 
| Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 77 |     If file_or_dir is a directory and not a symbolic link, then recursively | 
 | 78 |     descend the directory tree named by file_or_dir, checking all .py files | 
 | 79 |     along the way. If file_or_dir is an ordinary Python source file, it is | 
 | 80 |     checked for whitespace related problems. The diagnostic messages are | 
| Tim Peters | 8ac1495 | 2002-05-23 15:15:30 +0000 | [diff] [blame] | 81 |     written to standard output using the print statement. | 
| Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 82 |     """ | 
| Tim Peters | 8ac1495 | 2002-05-23 15:15:30 +0000 | [diff] [blame] | 83 |  | 
| Guido van Rossum | 9ab75cb | 1998-03-31 14:31:39 +0000 | [diff] [blame] | 84 |     if os.path.isdir(file) and not os.path.islink(file): | 
 | 85 |         if verbose: | 
| Walter Dörwald | 70a6b49 | 2004-02-12 17:35:32 +0000 | [diff] [blame] | 86 |             print "%r: listing directory" % (file,) | 
| Guido van Rossum | 9ab75cb | 1998-03-31 14:31:39 +0000 | [diff] [blame] | 87 |         names = os.listdir(file) | 
 | 88 |         for name in names: | 
 | 89 |             fullname = os.path.join(file, name) | 
 | 90 |             if (os.path.isdir(fullname) and | 
 | 91 |                 not os.path.islink(fullname) or | 
 | 92 |                 os.path.normcase(name[-3:]) == ".py"): | 
 | 93 |                 check(fullname) | 
 | 94 |         return | 
 | 95 |  | 
 | 96 |     try: | 
 | 97 |         f = open(file) | 
 | 98 |     except IOError, msg: | 
| Walter Dörwald | 70a6b49 | 2004-02-12 17:35:32 +0000 | [diff] [blame] | 99 |         errprint("%r: I/O Error: %s" % (file, msg)) | 
| Guido van Rossum | 9ab75cb | 1998-03-31 14:31:39 +0000 | [diff] [blame] | 100 |         return | 
 | 101 |  | 
 | 102 |     if verbose > 1: | 
| Walter Dörwald | 70a6b49 | 2004-02-12 17:35:32 +0000 | [diff] [blame] | 103 |         print "checking %r ..." % file | 
| Guido van Rossum | 9ab75cb | 1998-03-31 14:31:39 +0000 | [diff] [blame] | 104 |  | 
| Guido van Rossum | 9ab75cb | 1998-03-31 14:31:39 +0000 | [diff] [blame] | 105 |     try: | 
| Tim Peters | 5ca576e | 2001-06-18 22:08:13 +0000 | [diff] [blame] | 106 |         process_tokens(tokenize.generate_tokens(f.readline)) | 
| Guido van Rossum | 9ab75cb | 1998-03-31 14:31:39 +0000 | [diff] [blame] | 107 |  | 
 | 108 |     except tokenize.TokenError, msg: | 
| Walter Dörwald | 70a6b49 | 2004-02-12 17:35:32 +0000 | [diff] [blame] | 109 |         errprint("%r: Token Error: %s" % (file, msg)) | 
| Guido van Rossum | 9ab75cb | 1998-03-31 14:31:39 +0000 | [diff] [blame] | 110 |         return | 
 | 111 |  | 
| Georg Brandl | 2463f8f | 2006-08-14 21:34:08 +0000 | [diff] [blame] | 112 |     except IndentationError, msg: | 
 | 113 |         errprint("%r: Indentation Error: %s" % (file, msg)) | 
 | 114 |         return | 
 | 115 |  | 
| Guido van Rossum | 9ab75cb | 1998-03-31 14:31:39 +0000 | [diff] [blame] | 116 |     except NannyNag, nag: | 
 | 117 |         badline = nag.get_lineno() | 
 | 118 |         line = nag.get_line() | 
 | 119 |         if verbose: | 
| Walter Dörwald | 70a6b49 | 2004-02-12 17:35:32 +0000 | [diff] [blame] | 120 |             print "%r: *** Line %d: trouble in tab city! ***" % (file, badline) | 
 | 121 |             print "offending line: %r" % (line,) | 
| Guido van Rossum | 9ab75cb | 1998-03-31 14:31:39 +0000 | [diff] [blame] | 122 |             print nag.get_msg() | 
 | 123 |         else: | 
| Guido van Rossum | a74c556 | 1999-07-30 17:48:20 +0000 | [diff] [blame] | 124 |             if ' ' in file: file = '"' + file + '"' | 
| Andrew M. Kuchling | dc86a4e | 1998-12-18 13:56:58 +0000 | [diff] [blame] | 125 |             if filename_only: print file | 
| Walter Dörwald | 70a6b49 | 2004-02-12 17:35:32 +0000 | [diff] [blame] | 126 |             else: print file, badline, repr(line) | 
| Guido van Rossum | 9ab75cb | 1998-03-31 14:31:39 +0000 | [diff] [blame] | 127 |         return | 
 | 128 |  | 
 | 129 |     if verbose: | 
| Walter Dörwald | 70a6b49 | 2004-02-12 17:35:32 +0000 | [diff] [blame] | 130 |         print "%r: Clean bill of health." % (file,) | 
| Guido van Rossum | 9ab75cb | 1998-03-31 14:31:39 +0000 | [diff] [blame] | 131 |  | 
 | 132 | class Whitespace: | 
 | 133 |     # the characters used for space and tab | 
 | 134 |     S, T = ' \t' | 
 | 135 |  | 
 | 136 |     # members: | 
 | 137 |     #   raw | 
 | 138 |     #       the original string | 
 | 139 |     #   n | 
 | 140 |     #       the number of leading whitespace characters in raw | 
 | 141 |     #   nt | 
 | 142 |     #       the number of tabs in raw[:n] | 
 | 143 |     #   norm | 
 | 144 |     #       the normal form as a pair (count, trailing), where: | 
 | 145 |     #       count | 
 | 146 |     #           a tuple such that raw[:n] contains count[i] | 
 | 147 |     #           instances of S * i + T | 
 | 148 |     #       trailing | 
 | 149 |     #           the number of trailing spaces in raw[:n] | 
 | 150 |     #       It's A Theorem that m.indent_level(t) == | 
 | 151 |     #       n.indent_level(t) for all t >= 1 iff m.norm == n.norm. | 
 | 152 |     #   is_simple | 
 | 153 |     #       true iff raw[:n] is of the form (T*)(S*) | 
 | 154 |  | 
 | 155 |     def __init__(self, ws): | 
 | 156 |         self.raw  = ws | 
 | 157 |         S, T = Whitespace.S, Whitespace.T | 
 | 158 |         count = [] | 
 | 159 |         b = n = nt = 0 | 
 | 160 |         for ch in self.raw: | 
 | 161 |             if ch == S: | 
 | 162 |                 n = n + 1 | 
 | 163 |                 b = b + 1 | 
 | 164 |             elif ch == T: | 
 | 165 |                 n = n + 1 | 
 | 166 |                 nt = nt + 1 | 
 | 167 |                 if b >= len(count): | 
 | 168 |                     count = count + [0] * (b - len(count) + 1) | 
 | 169 |                 count[b] = count[b] + 1 | 
 | 170 |                 b = 0 | 
 | 171 |             else: | 
 | 172 |                 break | 
 | 173 |         self.n    = n | 
 | 174 |         self.nt   = nt | 
 | 175 |         self.norm = tuple(count), b | 
 | 176 |         self.is_simple = len(count) <= 1 | 
 | 177 |  | 
 | 178 |     # return length of longest contiguous run of spaces (whether or not | 
 | 179 |     # preceding a tab) | 
 | 180 |     def longest_run_of_spaces(self): | 
 | 181 |         count, trailing = self.norm | 
 | 182 |         return max(len(count)-1, trailing) | 
 | 183 |  | 
 | 184 |     def indent_level(self, tabsize): | 
 | 185 |         # count, il = self.norm | 
 | 186 |         # for i in range(len(count)): | 
 | 187 |         #    if count[i]: | 
 | 188 |         #        il = il + (i/tabsize + 1)*tabsize * count[i] | 
 | 189 |         # return il | 
 | 190 |  | 
 | 191 |         # quicker: | 
 | 192 |         # il = trailing + sum (i/ts + 1)*ts*count[i] = | 
 | 193 |         # trailing + ts * sum (i/ts + 1)*count[i] = | 
 | 194 |         # trailing + ts * sum i/ts*count[i] + count[i] = | 
 | 195 |         # trailing + ts * [(sum i/ts*count[i]) + (sum count[i])] = | 
 | 196 |         # trailing + ts * [(sum i/ts*count[i]) + num_tabs] | 
 | 197 |         # and note that i/ts*count[i] is 0 when i < ts | 
 | 198 |  | 
 | 199 |         count, trailing = self.norm | 
 | 200 |         il = 0 | 
 | 201 |         for i in range(tabsize, len(count)): | 
 | 202 |             il = il + i/tabsize * count[i] | 
 | 203 |         return trailing + tabsize * (il + self.nt) | 
 | 204 |  | 
 | 205 |     # return true iff self.indent_level(t) == other.indent_level(t) | 
 | 206 |     # for all t >= 1 | 
 | 207 |     def equal(self, other): | 
 | 208 |         return self.norm == other.norm | 
 | 209 |  | 
 | 210 |     # return a list of tuples (ts, i1, i2) such that | 
 | 211 |     # i1 == self.indent_level(ts) != other.indent_level(ts) == i2. | 
 | 212 |     # Intended to be used after not self.equal(other) is known, in which | 
 | 213 |     # case it will return at least one witnessing tab size. | 
 | 214 |     def not_equal_witness(self, other): | 
 | 215 |         n = max(self.longest_run_of_spaces(), | 
 | 216 |                 other.longest_run_of_spaces()) + 1 | 
 | 217 |         a = [] | 
 | 218 |         for ts in range(1, n+1): | 
 | 219 |             if self.indent_level(ts) != other.indent_level(ts): | 
 | 220 |                 a.append( (ts, | 
 | 221 |                            self.indent_level(ts), | 
 | 222 |                            other.indent_level(ts)) ) | 
 | 223 |         return a | 
 | 224 |  | 
| Tim Peters | bc0e910 | 2002-04-04 22:55:58 +0000 | [diff] [blame] | 225 |     # Return True iff self.indent_level(t) < other.indent_level(t) | 
| Guido van Rossum | 9ab75cb | 1998-03-31 14:31:39 +0000 | [diff] [blame] | 226 |     # for all t >= 1. | 
 | 227 |     # The algorithm is due to Vincent Broman. | 
 | 228 |     # Easy to prove it's correct. | 
 | 229 |     # XXXpost that. | 
 | 230 |     # Trivial to prove n is sharp (consider T vs ST). | 
 | 231 |     # Unknown whether there's a faster general way.  I suspected so at | 
 | 232 |     # first, but no longer. | 
 | 233 |     # For the special (but common!) case where M and N are both of the | 
 | 234 |     # form (T*)(S*), M.less(N) iff M.len() < N.len() and | 
 | 235 |     # M.num_tabs() <= N.num_tabs(). Proof is easy but kinda long-winded. | 
 | 236 |     # XXXwrite that up. | 
 | 237 |     # Note that M is of the form (T*)(S*) iff len(M.norm[0]) <= 1. | 
 | 238 |     def less(self, other): | 
 | 239 |         if self.n >= other.n: | 
| Tim Peters | bc0e910 | 2002-04-04 22:55:58 +0000 | [diff] [blame] | 240 |             return False | 
| Guido van Rossum | 9ab75cb | 1998-03-31 14:31:39 +0000 | [diff] [blame] | 241 |         if self.is_simple and other.is_simple: | 
 | 242 |             return self.nt <= other.nt | 
 | 243 |         n = max(self.longest_run_of_spaces(), | 
 | 244 |                 other.longest_run_of_spaces()) + 1 | 
 | 245 |         # the self.n >= other.n test already did it for ts=1 | 
 | 246 |         for ts in range(2, n+1): | 
 | 247 |             if self.indent_level(ts) >= other.indent_level(ts): | 
| Tim Peters | bc0e910 | 2002-04-04 22:55:58 +0000 | [diff] [blame] | 248 |                 return False | 
 | 249 |         return True | 
| Guido van Rossum | 9ab75cb | 1998-03-31 14:31:39 +0000 | [diff] [blame] | 250 |  | 
 | 251 |     # return a list of tuples (ts, i1, i2) such that | 
 | 252 |     # i1 == self.indent_level(ts) >= other.indent_level(ts) == i2. | 
 | 253 |     # Intended to be used after not self.less(other) is known, in which | 
 | 254 |     # case it will return at least one witnessing tab size. | 
 | 255 |     def not_less_witness(self, other): | 
 | 256 |         n = max(self.longest_run_of_spaces(), | 
 | 257 |                 other.longest_run_of_spaces()) + 1 | 
 | 258 |         a = [] | 
 | 259 |         for ts in range(1, n+1): | 
 | 260 |             if self.indent_level(ts) >= other.indent_level(ts): | 
 | 261 |                 a.append( (ts, | 
 | 262 |                            self.indent_level(ts), | 
 | 263 |                            other.indent_level(ts)) ) | 
 | 264 |         return a | 
 | 265 |  | 
 | 266 | def format_witnesses(w): | 
| Guido van Rossum | 9ab75cb | 1998-03-31 14:31:39 +0000 | [diff] [blame] | 267 |     firsts = map(lambda tup: str(tup[0]), w) | 
 | 268 |     prefix = "at tab size" | 
 | 269 |     if len(w) > 1: | 
 | 270 |         prefix = prefix + "s" | 
| Neal Norwitz | 7ce734c | 2002-05-31 14:13:04 +0000 | [diff] [blame] | 271 |     return prefix + " " + ', '.join(firsts) | 
| Guido van Rossum | 9ab75cb | 1998-03-31 14:31:39 +0000 | [diff] [blame] | 272 |  | 
| Tim Peters | 4efb6e9 | 2001-06-29 23:51:08 +0000 | [diff] [blame] | 273 | def process_tokens(tokens): | 
 | 274 |     INDENT = tokenize.INDENT | 
 | 275 |     DEDENT = tokenize.DEDENT | 
 | 276 |     NEWLINE = tokenize.NEWLINE | 
 | 277 |     JUNK = tokenize.COMMENT, tokenize.NL | 
| Tim Peters | 5ca576e | 2001-06-18 22:08:13 +0000 | [diff] [blame] | 278 |     indents = [Whitespace("")] | 
 | 279 |     check_equal = 0 | 
 | 280 |  | 
 | 281 |     for (type, token, start, end, line) in tokens: | 
| Tim Peters | b90f89a | 2001-01-15 03:26:36 +0000 | [diff] [blame] | 282 |         if type == NEWLINE: | 
 | 283 |             # a program statement, or ENDMARKER, will eventually follow, | 
 | 284 |             # after some (possibly empty) run of tokens of the form | 
 | 285 |             #     (NL | COMMENT)* (INDENT | DEDENT+)? | 
 | 286 |             # If an INDENT appears, setting check_equal is wrong, and will | 
 | 287 |             # be undone when we see the INDENT. | 
 | 288 |             check_equal = 1 | 
| Guido van Rossum | 9ab75cb | 1998-03-31 14:31:39 +0000 | [diff] [blame] | 289 |  | 
| Tim Peters | b90f89a | 2001-01-15 03:26:36 +0000 | [diff] [blame] | 290 |         elif type == INDENT: | 
 | 291 |             check_equal = 0 | 
 | 292 |             thisguy = Whitespace(token) | 
 | 293 |             if not indents[-1].less(thisguy): | 
 | 294 |                 witness = indents[-1].not_less_witness(thisguy) | 
 | 295 |                 msg = "indent not greater e.g. " + format_witnesses(witness) | 
 | 296 |                 raise NannyNag(start[0], msg, line) | 
 | 297 |             indents.append(thisguy) | 
| Guido van Rossum | f4b44fa | 1998-04-06 14:41:20 +0000 | [diff] [blame] | 298 |  | 
| Tim Peters | b90f89a | 2001-01-15 03:26:36 +0000 | [diff] [blame] | 299 |         elif type == DEDENT: | 
 | 300 |             # there's nothing we need to check here!  what's important is | 
 | 301 |             # that when the run of DEDENTs ends, the indentation of the | 
 | 302 |             # program statement (or ENDMARKER) that triggered the run is | 
 | 303 |             # equal to what's left at the top of the indents stack | 
| Guido van Rossum | aa2a7a4 | 1998-06-09 19:02:21 +0000 | [diff] [blame] | 304 |  | 
| Tim Peters | b90f89a | 2001-01-15 03:26:36 +0000 | [diff] [blame] | 305 |             # Ouch!  This assert triggers if the last line of the source | 
 | 306 |             # is indented *and* lacks a newline -- then DEDENTs pop out | 
 | 307 |             # of thin air. | 
 | 308 |             # assert check_equal  # else no earlier NEWLINE, or an earlier INDENT | 
 | 309 |             check_equal = 1 | 
| Guido van Rossum | aa2a7a4 | 1998-06-09 19:02:21 +0000 | [diff] [blame] | 310 |  | 
| Tim Peters | b90f89a | 2001-01-15 03:26:36 +0000 | [diff] [blame] | 311 |             del indents[-1] | 
| Guido van Rossum | f4b44fa | 1998-04-06 14:41:20 +0000 | [diff] [blame] | 312 |  | 
| Tim Peters | b90f89a | 2001-01-15 03:26:36 +0000 | [diff] [blame] | 313 |         elif check_equal and type not in JUNK: | 
 | 314 |             # this is the first "real token" following a NEWLINE, so it | 
 | 315 |             # must be the first token of the next program statement, or an | 
 | 316 |             # ENDMARKER; the "line" argument exposes the leading whitespace | 
 | 317 |             # for this statement; in the case of ENDMARKER, line is an empty | 
 | 318 |             # string, so will properly match the empty string with which the | 
 | 319 |             # "indents" stack was seeded | 
 | 320 |             check_equal = 0 | 
 | 321 |             thisguy = Whitespace(line) | 
 | 322 |             if not indents[-1].equal(thisguy): | 
 | 323 |                 witness = indents[-1].not_equal_witness(thisguy) | 
 | 324 |                 msg = "indent not equal e.g. " + format_witnesses(witness) | 
 | 325 |                 raise NannyNag(start[0], msg, line) | 
| Guido van Rossum | f4b44fa | 1998-04-06 14:41:20 +0000 | [diff] [blame] | 326 |  | 
| Guido van Rossum | 9ab75cb | 1998-03-31 14:31:39 +0000 | [diff] [blame] | 327 |  | 
 | 328 | if __name__ == '__main__': | 
 | 329 |     main() |