We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a5a69a commit 5d648d1Copy full SHA for 5d648d1
HACKING
@@ -0,0 +1,14 @@
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
+
4
+Triple-quotes should always be """, single quotes are ' unless using "
5
+would result in less escaping within the string.
6
7
+All modules, functions, and methods should be well documented reStructuredText for
8
+Sphinx AutoDoc.
9
10
+All functionality should be available in pure Python. Optional C (via Cython)
11
+implementations may be written for performance reasons, but should never
12
+replace the Python implementation.
13
14
+Lastly, don't take yourself too seriously :)
0 commit comments