File: token.py

package info (click to toggle)
python-gendoc 0.73-8
  • links: PTS
  • area: main
  • in suites: woody
  • size: 312 kB
  • ctags: 845
  • sloc: python: 2,610; makefile: 124; sh: 26
file content (6 lines) | stat: -rw-r--r-- 162 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
# import the correct version of symbol and token modules
import sys
if sys.version[:4] <= '1.3 ':
    from token_v1_3 import *
else:
    from token_v1_4 import *