johnbickmore / livecoding

A code reloading library for Python
https://code.google.com/archive/p/livecoding/
Other
0 stars 0 forks source link

follow PEP 8 naming conventions #3

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
The code seems to follow the C# naming conventions of using camel case with
leading caps for methods and leading lowercase for instance variables.  The
PEP 8 style guide for Python recommends using the
lowercase_with_underscores style for both methods and instance variables. 
Following this will keep the code consistent with the prevailing style for
Python naming.

See http://www.python.org/dev/peps/pep-0008/

Original issue reported on code.google.com by m...@matt-good.net on 10 Apr 2007 at 6:49

GoogleCodeExporter commented 8 years ago
This is a matter of taste.  That PEP should only apply to the standard library 
IMO.

Original comment by richard.m.tew@gmail.com on 6 Jan 2008 at 8:52