Capitalization for variable that holds a class

Prasad, Ramit ramit.prasad at jpmorgan.com
Thu Sep 27 13:20:03 EDT 2012


Dennis Lee Bieber wrote:
> Sent: Sunday, September 23, 2012 11:53 AM
> To: python-list at python.org
> Subject: Re: Capitalization for variable that holds a class
> 
> On Sun, 23 Sep 2012 16:48:38 +0100, Joshua Landau
> <joshua.landau.ws at gmail.com> declaimed the following in
> gmane.comp.python.general:
> 
> > Simple question:
> >
> > [myClass() for myClass in myClasses]
> > vs
> > [MyClass() for MyClass in myClasses]
> >
> 
> 	The recommended naming scheme for Python is that class DEFINITIONS
> begin capitalized. Instances, methods/attributes, functions begin
> lowercase.
> 
> 	I abstain from the argument about camel-case vs _ (Ada "pretty
> printers" automatically capitalize at _, so _ is common in Ada)
> 
> class MyClass(object):
> 	def myMethod(self):

Are you (the OP) using Python 2 or 3? In python 2 list
comprehensions leak; if you use MyClass as the list
comprehension variable name it will overwrite the
MyClass class definition (if it exists).

>>> class MyClass(object):
...     pass
...     
>>> print MyClass
<class '__pieshell__.MyClass'>
>>> _ = [ MyClass for MyClass in xrange( 5 ) ]
>>> print MyClass
4


Ramit


This email is confidential and subject to important disclaimers and
conditions including on offers for the purchase or sale of
securities, accuracy and completeness of information, viruses,
confidentiality, legal privilege, and legal entity disclaimers,
available at http://www.jpmorgan.com/pages/disclosures/email.  



More information about the Python-list mailing list