Merge pull request #29084 from rallytime/bp-29055

Back-port #29055 to 2015.5
This commit is contained in:
Nicole Thomas 2015-11-20 13:57:54 -07:00
commit d8a2018bc8

View file

@ -28,6 +28,20 @@ pylint_ program as follows:
.. _pylint: http://www.pylint.org
Variables
=========
Variables should be a minimum of three characters and should provide an
easy-to-understand name of the object being represented.
When keys and values are iterated over, descriptive names should be used
to represent the temporary variables.
Multi-word variables should be separated by an underscore.
Variables which are two-letter words should have an underscore appended
to them to pad them to three characters.
Strings
=======
@ -332,4 +346,4 @@ commit, and the changes should be legitimate, if there are any questions about
whether a style change is legitimate please reference this document and the
official PEP 8 (http://legacy.python.org/dev/peps/pep-0008/) document before
changing code. Many claims that a change is PEP 8 have been invalid, please
double check before committing fixes.
double check before committing fixes.