##// END OF EJS Templates
more unique filename for test...
more unique filename for test I actually had a filename named /tmp/foo and this test failed, because it was owned by a different user, hence writing to it (and deleting it) failed. Using /tmp/foo_iptest makes it a bit more unique, and a lot less likely to be on a given system.

File last commit:

r10110:30fce8a6
r10915:0ef9e081
Show More
tokenize2.py
9 lines | 158 B | text/x-python | PythonLexer
"""Load our patched versions of tokenize.
"""
import sys
if sys.version_info[0] >= 3:
from _tokenize_py3 import *
else:
from _tokenize_py2 import *