Skip to content

Commit 5d648d1

Browse files
author
Kenneth Reitz
committed
hacking guidelines
1 parent 1a5a69a commit 5d648d1

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

HACKING

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)