Changes between Version 14 and Version 15 of Contributing/CodingStyle


Ignore:
Timestamp:
09/23/2014 06:39:16 PM (10 years ago)
Author:
Cas
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Contributing/CodingStyle

    v14 v15  
    99 * Line length ''(see above)'' 
    1010 
    11  * Code should pass the [https://pypi.python.org/pypi/flake8 flake8] source code checker and in ideal cases [http://www.pylint.org/ Pylint] too.   
     11 * Code '''must''' pass the [https://pypi.python.org/pypi/flake8 flake8] source code checker and in ideal cases [http://www.pylint.org/ Pylint] too.   
    1212 
    1313 * All byte arrays (byte strings, `str`) should be decoded to strings (unicode strings, `unicode`) on input and encoded back to byte arrays on output. [http://stackoverflow.com/a/606199/175584 From Stackoverflow:]