X-Git-Url: http://git.cascardo.eti.br/?a=blobdiff_plain;f=CodingStyle.md;h=0a441e011bb7238db05817425d0ece10b966319e;hb=8a8b8fbdcc11ca81c81c2aedbd3330b5ee38a377;hp=77b1572d700b38d514237ac145be16304e8e3f9a;hpb=ca6ba70092b1528e12d3140d70232175a13c335d;p=cascardo%2Fovs.git diff --git a/CodingStyle.md b/CodingStyle.md index 77b1572d7..0a441e011 100644 --- a/CodingStyle.md +++ b/CodingStyle.md @@ -569,3 +569,10 @@ for other compilers. You can, however, use C99 features or GCC extensions also supported by Clang in code that compiles only on GNU/Linux (such as lib/netdev-linux.c), because GCC is the system compiler there. + +## PYTHON + +When introducing new Python code, try to follow Python's +[PEP 8](http://www.python.org/dev/peps/pep-0008/) style. +Consider running the `pep8` or `flake8` tool against your +code to find issues.