trace.Trace.results()

results() Return a CoverageResults object that contains the cumulative results of all previous calls to run, runctx and runfunc for the given Trace instance. Does not reset the accumulated trace results.

tokenize.TokenError

exception tokenize.TokenError Raised when either a docstring or expression that may be split over several lines is not completed anywhere in the file, for example: """Beginning of docstring or: [1, 2, 3

tokenize.untokenize()

tokenize.untokenize(iterable) Converts tokens back into Python source code. The iterable must return sequences with at least two elements, the token type and the token string. Any additional sequence elements are ignored. The reconstructed script is returned as a single string. The result is guaranteed to tokenize back to match the input so that the conversion is lossless and round-trips are assured. The guarantee applies only to the token type and token string as the spacing between tokens

tokenize.tokenize()

tokenize.tokenize(readline) The tokenize() generator requires one argument, readline, which must be a callable object which provides the same interface as the io.IOBase.readline() method of file objects. Each call to the function should return one line of input as bytes. The generator produces 5-tuples with these members: the token type; the token string; a 2-tuple (srow, scol) of ints specifying the row and column where the token begins in the source; a 2-tuple (erow, ecol) of ints specifyi

tokenize.open()

tokenize.open(filename) Open a file in read only mode using the encoding detected by detect_encoding(). New in version 3.2.

token.tok_name

token.tok_name Dictionary mapping the numeric values of the constants defined in this module back to name strings, allowing more human-readable representation of parse trees to be generated.

token.ISNONTERMINAL()

token.ISNONTERMINAL(x) Return true for non-terminal token values.

token.ISTERMINAL()

token.ISTERMINAL(x) Return true for terminal token values.

tkinter.Widget.tk.deletefilehandler()

Widget.tk.deletefilehandler(file) Unregisters a file handler.

token.ISEOF()

token.ISEOF(x) Return true if x is the marker indicating the end of input.