Message5102

Author funkychocobo
Recipients funkychocobo
Date 2009-09-04.14:07:42
SpamBayes Score 0.0005200213
Marked as misclassified No
Message-id <1252073263.65.0.0132840191057.issue1460@psf.upfronthosting.co.za>
In-reply-to
Content
This was probably a similar issue to 1365, not sure of the severity 
but from our work, if the interactive interp isn't functional, 
debuggers (like pydev) seem to have issues. Debugging is cricial in my 
mind ^_^

Using 2.5.1rc1, copy (or type) the following code on windows 32 using 
jre 1.6.0_14 into the interactive interp:

for i in range(ITER):
   chain = Chain(40)
   chain.kill(3)
   end = time.time()

What i get is a never ending console that won't let me end the for 
loop.

Or effectively the output (note the extra ...'s are me hitting return 
repeatedly hoping for the for loop interactivity to eventually end 
being defined):
>>> for i in range(ITER):
...    chain = Chain(40)
...    chain.kill(3)
... end = time.time()
...
...
...
...
History
Date User Action Args
2009-09-04 14:07:44funkychocobosetrecipients: + funkychocobo
2009-09-04 14:07:43funkychocobosetmessageid: <1252073263.65.0.0132840191057.issue1460@psf.upfronthosting.co.za>
2009-09-04 14:07:43funkychocobolinkissue1460 messages
2009-09-04 14:07:42funkychocobocreate