##// END OF EJS Templates
Initial refactoring of htmlnotebook.txt into 3 parts....
Initial refactoring of htmlnotebook.txt into 3 parts. Renamed htmlnotebook.txt to notebook.txt. 79-char width hard wrapping imposed. Rearrangment of order and level within notebook.txt. Almost no text modified.

File last commit:

r10110:30fce8a6
r11792:22ae7871
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 *