From: Kenneth Reitz Date: Fri, 14 Oct 2011 02:20:43 +0000 (-0400) Subject: Remove hacking file. X-Git-Tag: v0.6.4^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=29548bfab65be51d7a7589cd702adc6eb0961588;p=services%2Fpython-requests.git Remove hacking file. --- diff --git a/HACKING b/HACKING deleted file mode 100644 index f23d6fb..0000000 --- a/HACKING +++ /dev/null @@ -1,15 +0,0 @@ -Where possible, please follow PEP8 with regard to coding style. Sometimes the -line length restriction is too hard to follow, so don't bend over backwards -there. - -Triple-quotes should always be """, single quotes are ' unless using " would -result in less escaping within the string. - -All modules, functions, and methods should be well documented reStructuredText -for Sphinx AutoDoc. - -All functionality should be available in pure Python. Optional C (via Cython) -implementations may be written for performance reasons, but should never -replace the Python implementation. - -Lastly, don't take yourself too seriously :)