Re: Re: Bug: spurious indentation error

2007-09-28 Thread Gabriel Genellina
En Sat, 29 Sep 2007 01:43:53 -0300, Mridula Ramesh <[EMAIL PROTECTED]> escribi�: > Lol, nope, I checked today too, and it happened again. Try running this > as a > script, not from the prompt - I got a SyntaxError on line 10 as expected. After correcting it, I got an `IndentationError: expect

Re: Re: Bug: spurious indentation error

2007-09-28 Thread Mridula Ramesh
Hi. Lol, nope, I checked today too, and it happened again. Try running this as a script, not from the prompt - class main(): def __init__(self): rt.geometry("680x600") rt.config(bg="CornSilk") rt.title("my miniscule app") #MENU menu = Menu(rt)

Re: Bug: spurious indentation error

2007-09-28 Thread Steve Holden
Mridula Ramesh wrote: > hi. > > is this the right place to report a bug? > > i had written this by mistake: >filemenu = Menu(menu) , bg="White") > > instead of > filemenu = Menu(menu, bg="Pink") > > and the compiler kept giving me an indentation error in a line much > further down which

Bug: spurious indentation error

2007-09-28 Thread Mridula Ramesh
hi. is this the right place to report a bug? i had written this by mistake: filemenu = Menu(menu) , bg="White") instead of filemenu = Menu(menu, bg="Pink") and the compiler kept giving me an indentation error in a line much further down which was perfectly okay. i am using python 2.5.1 wi