MCPcopy Index your code
hub / github.com/RustPython/RustPython / process_tokens

Function process_tokens

Lib/tabnanny.py:276–280  ·  view source on GitHub ↗
(tokens)

Source from the content-addressed store, hash-verified

274 return prefix + " " + ', '.join(firsts)
275
276def process_tokens(tokens):
277 try:
278 _process_tokens(tokens)
279 except TabError as e:
280 raise NannyNag(e.lineno, e.msg, e.text)
281
282def _process_tokens(tokens):
283 INDENT = tokenize.INDENT

Callers 1

checkFunction · 0.85

Calls 2

_process_tokensFunction · 0.85
NannyNagClass · 0.85

Tested by

no test coverage detected