[issue13416] Python Tutorial, Section 3, Minor PEP 8 adjustment

2011-11-20 Thread Martin v . Löwis
Martin v. Löwis added the comment: Indeed, PEP 8 mandates that constants be written in all uppercase, so changing it would actually make it deviate from PEP 8. Also, using a lower-case variable name "string" would be a bad choice because it collides with a module name. -- nosy: +loewi

[issue13416] Python Tutorial, Section 3, Minor PEP 8 adjustment

2011-11-17 Thread Ezio Melotti
Changes by Ezio Melotti : -- stage: -> committed/rejected ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue13416] Python Tutorial, Section 3, Minor PEP 8 adjustment

2011-11-16 Thread Benjamin Peterson
Benjamin Peterson added the comment: It's fine as it is; constants are often denoted with capital letters. -- nosy: +benjamin.peterson resolution: -> rejected status: open -> closed ___ Python tracker ___

[issue13416] Python Tutorial, Section 3, Minor PEP 8 adjustment

2011-11-16 Thread Nebelhom
New submission from Nebelhom : Python Tutorial 3.3a 3. An informal introduction to python example: - # this is the first comment SPAM = 1 # and this is the second comment # ... and now a third!