Lines Matching refs:NONE
151 (NONE, BACKSLASH, FIRST, NEXT, BRACKET) = range(5)
155 TestInfo('', [0], NONE),
157 TestInfo('"""This is a complete docstring."""\n', [0, 1], NONE),
158 TestInfo("'''This is a complete docstring.'''\n", [0, 1], NONE),
165 TestInfo('"This is a complete string."\n', [0, 1], NONE),
166 TestInfo('"This is an incomplete string.\n', [0, 1], NONE),
167 TestInfo("'This is more incomplete.\n\n", [0, 1, 2], NONE),
169 TestInfo('# Comment\\\n', [0, 1], NONE),
175 [0, 1, 3], NONE),
178 TestInfo('())\n', [0, 1], NONE), # Extra closer.
181 TestInfo('{)(]\n', [0, 1], NONE), # Mismatched.
201 (NONE, BACKSLASH, FIRST, NEXT, BRACKET) = range(5)
204 TestInfo('', NONE),