[issue8285] IDLE not smart indenting correctly in nested statements

2012-01-17 Thread Tal Einat
Changes by Tal Einat : -- nosy: -taleinat ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.or

[issue8285] IDLE not smart indenting correctly in nested statements

2012-01-17 Thread Cherniavsky Beni
Cherniavsky Beni added the comment: Mark: customizing tabs to be anything but 8 spaces is inadvisable with Python, because Python always parses them as 8. Sooner or later one would mix tabs and spaces and the result would be really painful to debug. -- nosy: +cben ___

[issue8285] IDLE not smart indenting correctly in nested statements

2012-01-16 Thread Terry J. Reedy
Terry J. Reedy added the comment: The current indentation is a consequent of using tabs for indents. Changing that is the subject of #7676. #1196946 is a similar issue. -- nosy: +terry.reedy resolution: -> duplicate status: open -> closed superseder: -> IDLE shell shouldn't use TABs v

[issue8285] IDLE not smart indenting correctly in nested statements

2010-08-05 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- nosy: -terry.reedy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue8285] IDLE not smart indenting correctly in nested statements

2010-08-05 Thread Tofystedeth
Tofystedeth added the comment: You're right, it also does it when I use the Python shell from the command prompt. I'm running Windows Vista 32bit SP2. -- ___ Python tracker ___

[issue8285] IDLE not smart indenting correctly in nested statements

2010-08-05 Thread Mark Dickinson
Mark Dickinson added the comment: I don't think this is specific to IDLE; it also happens when launching the python interpreter directly from a terminal on OS X or Linux. (BTW, what platform are you on?) As far as I can tell, the TAB character is simply advancing to the next tab stop; tho

[issue8285] IDLE not smart indenting correctly in nested statements

2010-08-04 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: +taleinat, terry.reedy stage: -> needs patch versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker ___

[issue8285] IDLE not smart indenting correctly in nested statements

2010-04-01 Thread Tofystedeth
New submission from Tofystedeth : huh, somehow I submitted this before I was done, sorry bout that. IDLE (the shell, not the text editor) doubles the indentation when in nested statements. For instance while True: while True: while True: becomes >>> while True: while True:

[issue8285] IDLE not smart indenting correctly in nested statements

2010-04-01 Thread Tofystedeth
Changes by Tofystedeth : -- components: IDLE nosy: Tofystedeth severity: normal status: open title: IDLE not smart indenting correctly in nested statements versions: Python 2.6 ___ Python tracker ___