utils.py 116 B

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