use mixedCase

This commit is contained in:
Piper Merriam 2015-12-17 08:57:02 -07:00
parent d63ae5a5fa
commit d1882bc753

View File

@ -559,15 +559,11 @@ naming styles.
* ``UPPERCASE`` * ``UPPERCASE``
* ``UPPER_CASE_WITH_UNDERSCORES`` * ``UPPER_CASE_WITH_UNDERSCORES``
* ``CapitalizedWords`` (or CapWords) * ``CapitalizedWords`` (or CapWords)
.. note:: When using abbreviations in CapWords, capitalize all the letters of the abbreviation. Thus HTTPServerError is better than HttpServerError.
The following naming conventions are discouraged.
* ``mixedCase`` (differs from CapitalizedWords by initial lowercase character!) * ``mixedCase`` (differs from CapitalizedWords by initial lowercase character!)
* ``Capitalized_Words_With_Underscores`` * ``Capitalized_Words_With_Underscores``
.. note:: When using abbreviations in CapWords, capitalize all the letters of the abbreviation. Thus HTTPServerError is better than HttpServerError.
Names to Avoid Names to Avoid
============== ==============
@ -595,7 +591,7 @@ Events should be named using the CapWords style.
Function Names Function Names
============== ==============
Functions should be lowercase with words separated by underscores. Functions should use mixedCase.
Function Arguments Function Arguments
@ -608,8 +604,7 @@ should be the first argument and should always be named ``self``.
Contract and Local Variables Contract and Local Variables
============================ ============================
Use lowercase words separated by underscores. Use trailing underscores to Use mixedCase.
avoid collisions with reserved names.
Constants Constants