Re: Python Style Guide Questions - Contd.

2009-01-22 Thread Aahz
In article <6tk9qqfbav8...@mid.uni-berlin.de>, Marc 'BlackJack' Rintsch wrote: > >PEP8 doesn't mention constants at all. Not true anymore. ;-) -- Aahz (a...@pythoncraft.com) <*> http://www.pythoncraft.com/ Weinberg's Second Law: If builders built buildings the way programm

Re: Python Style Guide Questions - Contd.

2009-01-19 Thread Marc 'BlackJack' Rintsch
On Mon, 19 Jan 2009 05:50:54 -0800, koranthala wrote: > Hi, >I have some more questions about python code styling. 1. Global >Variables: In my code, I am using some global variables. > Now, when I ran PyLint, it raised convention errors mentioning that they > should be CAPITAL_ALPHABETS. N

Re: Python Style Guide Questions - Contd.

2009-01-19 Thread Diez B. Roggisch
koranthala wrote: > Hi, >I have some more questions about python code styling. >1. Global Variables: In my code, I am using some global variables. > Now, when I ran PyLint, it raised convention errors mentioning that > they should be CAPITAL_ALPHABETS. Now, in PEP 8, I did not see that > m

Python Style Guide Questions - Contd.

2009-01-19 Thread koranthala
Hi, I have some more questions about python code styling. 1. Global Variables: In my code, I am using some global variables. Now, when I ran PyLint, it raised convention errors mentioning that they should be CAPITAL_ALPHABETS. Now, in PEP 8, I did not see that mentioned. Please let me know wh