File: symbol.py

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