mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-19 06:35:10 +00:00
9 lines
160 B
Python
9 lines
160 B
Python
"""Load our patched versions of tokenize.
|
|
"""
|
|
|
|
import sys
|
|
|
|
if sys.version_info[0] >= 3:
|
|
from ._tokenize_py3 import *
|
|
else:
|
|
from ._tokenize_py2 import *
|