HACKING 616 B

1234567891011121314
  1. Where possible, please follow PEP8 with regard to coding style. Sometimes the line
  2. length restriction is too hard to follow, so don't bend over backwards there.
  3. Triple-quotes should always be """, single quotes are ' unless using "
  4. would result in less escaping within the string.
  5. All modules, functions, and methods should be well documented reStructuredText for
  6. Sphinx AutoDoc.
  7. All functionality should be available in pure Python. Optional C (via Cython)
  8. implementations may be written for performance reasons, but should never
  9. replace the Python implementation.
  10. Lastly, don't take yourself too seriously :)