utils.py 118 B

12345678
  1. # -*- coding: utf-8 -*-
  2. import sys
  3. def is_python3():
  4. if sys.version > '3':
  5. return True
  6. return False