Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

compat.py 196B

123456789
  1. import sys
  2. PY2 = sys.version_info[0] == 2
  3. PY3 = sys.version_info[0] == 3
  4. def with_metaclass(meta, *bases):
  5. """Create a base class with a metaclass."""
  6. return meta("NewBase", bases, {})