python_guidelines.rst 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. Python coding guidelines
  2. ========================
  3. PEP8
  4. ~~~~
  5. We ask that all Python contributions adhere to the `PEP8 <https://www.python.org/dev/peps/pep-0008/>`_ style guide, apart from the restriction on line length (E501) and some minor docstring-related issues.
  6. The list of PEP8 violations to ignore is in the ``setup.cfg`` file, under the ``[flake8]`` header.
  7. You might want to configure the flake8 linter in your editor/IDE to use the configuration in this file.
  8. In addition, import lines should be sorted according to `isort <https://pycqa.github.io/isort/>`_ 5.6.4 rules. If you have installed Wagtail's testing dependencies (``pip install -e .[testing]``), you can check your code by running ``make lint``.
  9. Django compatibility
  10. ~~~~~~~~~~~~~~~~~~~~
  11. Wagtail is written to be compatible with multiple versions of Django. Sometimes, this requires running one piece of code for recent version of Django, and another piece of code for older versions of Django. In these cases, always check which version of Django is being used by inspecting ``django.VERSION``:
  12. .. code-block:: python
  13. import django
  14. if django.VERSION >= (1, 9):
  15. # Use new attribute
  16. related_field = field.rel
  17. else:
  18. # Use old, deprecated attribute
  19. related_field = field.related
  20. Always compare against the version using greater-or-equals (``>=``), so that code for newer versions of Django is first.
  21. Do not use a ``try ... except`` when seeing if an object has an attribute or method introduced in a newer versions of Django, as it does not clearly express why the ``try ... except`` is used. An explicit check against the Django version makes the intention of the code very clear.
  22. .. code-block:: python
  23. # Do not do this
  24. try:
  25. related_field = field.rel
  26. except AttributeError:
  27. related_field = field.related
  28. If the code needs to use something that changed in a version of Django many times, consider making a function that encapsulates the check:
  29. .. code-block:: python
  30. import django
  31. def related_field(field):
  32. if django.VERSION >= (1, 9):
  33. return field.rel
  34. else:
  35. return field.related
  36. If a new function has been introduced by Django that you think would be very useful for Wagtail, but is not available in older versions of Django that Wagtail supports, that function can be copied over in to Wagtail. If the user is running a new version of Django that has the function, the function should be imported from Django. Otherwise, the version bundled with Wagtail should be used. A link to the Django source code where this function was taken from should be included:
  37. .. code-block:: python
  38. import django
  39. if django.VERSION >= (1, 9):
  40. from django.core.validators import validate_unicode_slug
  41. else:
  42. # Taken from https://github.com/django/django/blob/1.9/django/core/validators.py#L230
  43. def validate_unicode_slug(value):
  44. # Code left as an exercise to the reader
  45. pass
  46. Tests
  47. ~~~~~
  48. Wagtail has a suite of tests, which we are committed to improving and expanding. See :ref:`testing`.
  49. We run continuous integration to ensure that no commits or pull requests introduce test failures. If your contributions add functionality to Wagtail, please include the additional tests to cover it; if your contributions alter existing functionality, please update the relevant tests accordingly.