##// END OF EJS Templates
Merge pull request #4715 from minrk/tornado-static-url...
Merge pull request #4715 from minrk/tornado-static-url restore use of tornado static_url in templates

File last commit:

r13347:54891794
r13985:0fc2a30e merge
Show More
tokenize2.py
9 lines | 160 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 *