[issue11422] indentation problem in if, elif, else statements

2011-03-06 Thread Victor
Victor added the comment: Thanks, people. Now I understood that both "if" and "else" should be always at the beginning of the lines they are sitting on. -- ___ Python tracker _

[issue11422] indentation problem in if, elif, else statements

2011-03-06 Thread Raymond Hettinger
Raymond Hettinger added the comment: In both cases, if-clause and the else-clause are at the beginning of the line (from Python's point of view). The difference is that the Python command line interpreter adds a "..." to the beginning of secondary lines. That makes the else-clause visually l

[issue11422] indentation problem in if, elif, else statements

2011-03-06 Thread Martin v . Löwis
Changes by Martin v. Löwis : -- resolution: -> invalid status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue11422] indentation problem in if, elif, else statements

2011-03-06 Thread Martin v . Löwis
Martin v. Löwis added the comment: It is consistent: the else goes *always* under the if. If the if is unindented, so must be the else. -- nosy: +loewis ___ Python tracker ___

[issue11422] indentation problem in if, elif, else statements

2011-03-06 Thread Victor
New submission from Victor : Hi dear developers, "Python 3.2 (r32:88445, Feb 20 2011, 21:29:02) [MSC v.1500 32 bit (Intel)] on win32" Hello, Several days ago I downloaded Python 3.2, the standard windows installer, for windows vista. Here's the bug: in the Python-command line, the following wor