[issue11433] syntax error at while statement in IDLE/python shell

2011-03-08 Thread SilentGhost
Changes by SilentGhost ghost@gmail.com: -- status: pending - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11433 ___ ___

[issue11433] syntax error at while statement in IDLE/python shell

2011-03-07 Thread Victor
New submission from Victor victoryw...@yahoo.com: Hi and please help me understand if it is a bug, or..,as someone said, there's a 'bug' in my understanding: (Python 3.2 (r32:88445, Feb 20 2011, 21:29:02) [MSC v.1500 32 bit (Intel)] on win32) (windows vista, the regular windows python

[issue11433] syntax error at while statement in IDLE/python shell

2011-03-07 Thread SilentGhost
SilentGhost ghost@gmail.com added the comment: No this is not a bug. You're trying to execute two statements in one go in IDLE, which it doesn't support. You need to run your while loop as a single statement, then your print('Done'). -- nosy: +SilentGhost resolution: - invalid