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.

conventions.rst 620B

12345678910111213141516171819202122
  1. ===========
  2. Conventions
  3. ===========
  4. Coding conventions
  5. ------------------
  6. * Follow the Django conventions (http://docs.djangoproject.com/en/dev/internals/contributing/#coding-style)
  7. * PEP8 (http://www.python.org/dev/peps/pep-0008/)
  8. * PEP257 (http://www.python.org/dev/peps/pep-0257/)
  9. General guidelines
  10. ------------------
  11. The following are a set of design conventions that should be followed when
  12. writing apps for oscar:
  13. * When referencing managers of model classes, use ``_default_manager`` rather than
  14. ``objects``. This allows projects to override the default manager to provide
  15. domain-specific behaviour.