diff -r 744cd0b4b8cd -r 01f04fbc1842 DebugClients/Python/coverage/phystokens.py --- a/DebugClients/Python/coverage/phystokens.py Thu Jan 07 13:42:51 2010 +0000 +++ b/DebugClients/Python/coverage/phystokens.py Thu Jan 07 13:50:32 2010 +0000 @@ -1,7 +1,7 @@ """Better tokenizing for coverage.py.""" import keyword, re, token, tokenize -from coverage.backward import StringIO # pylint: disable-msg=W0622 +from .backward import StringIO # pylint: disable-msg=W0622 def phys_tokens(toks): """Return all physical tokens, even line continuations. @@ -104,4 +104,4 @@ col = ecol if line: - yield line + yield line \ No newline at end of file