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 263B

12345678910111213
  1. # -*- coding: utf-8 -*-
  2. # flake8: noqa
  3. try: # pragma: no cover
  4. compat_basestring = basestring
  5. except NameError:
  6. compat_basestring = str
  7. try:
  8. compat_next = next
  9. except NameError: # pragma: no cover
  10. def compat_next(it):
  11. return it.next()