= KNOWN BUGS = * In multiline.py, function-scope detection has an off-by-one error on contiguousIntegers(). The function header line should be in range but isn't * In stringmethods.py, line.strip().upper() should fully resolve but doesn't - repeated transforms are not working quite as the should. * More could be done with short conditionals, e.g. "if a: foo()" * ''' should be treated the way """ is. * Interpret @staticmethod. * Lambdas could be translated. The problem is telling where they end; the usual comma ambiguity is a problem here. * The if "string" in object: translator does not handle literal lists, tuples, or dictionaries.