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

1234567891011
  1. """
  2. This file exists to contain all Django and Python compatibility issues.
  3. In order to avoid circular references, nothing should be imported from
  4. debug_toolbar.
  5. """
  6. try:
  7. from django.template.base import linebreak_iter # NOQA
  8. except ImportError: # Django < 1.9
  9. from django.views.debug import linebreak_iter # NOQA