You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
typesetting/csp/port2/python-constraint-master/constraint/compat.py

15 lines
238 B
Python

#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
PY2 = sys.version_info[0] == 2
PY3 = (sys.version_info[0] >= 3)
if PY3:
string_types = str
xrange = range
else:
string_types = basestring # noqa
xrange = xrange