README.Coding: Mention that PEP8 is the standard for Python code.
authorJelmer Vernooij <jelmer@samba.org>
Sun, 17 Jul 2011 11:33:03 +0000 (13:33 +0200)
committerJelmer Vernooij <jelmer@samba.org>
Sat, 23 Jul 2011 20:08:09 +0000 (22:08 +0200)
Almost all of our existing code is PEP8, and virtually every other free software
project in Python uses PEP8.

README.Coding

index 3ea9c781aa1c566579e601d46d05e6e8ded93235..12997ccf9addaa925f62d1622c5cb55f51aaa29e 100644 (file)
@@ -16,11 +16,15 @@ style should never outweigh coding itself and so the guidelines
 described here are hopefully easy enough to follow as they are very
 common and supported by tools and editors.
 
-The basic style, also mentioned in prog_guide4.txt, is the Linux kernel
+The basic style for C code, also mentioned in prog_guide4.txt, is the Linux kernel
 coding style (See Documentation/CodingStyle in the kernel source tree). This
 closely matches what most Samba developers use already anyways, with a few
 exceptions as mentioned below.
 
+The coding style for Python code is documented in PEP8, http://www.python.org/pep/pep8.
+If you have ever worked on another free software python project, you are probably
+already familiar with it.
+
 But to save you the trouble of reading the Linux kernel style guide, here
 are the highlights.