Message5098

Author funkychocobo
Recipients funkychocobo, fwierzbicki, undefined
Date 2009-09-04.04:06:36
SpamBayes Score 0.0045187618
Marked as misclassified No
Message-id <1252037197.3.0.277378061468.issue1365@psf.upfronthosting.co.za>
In-reply-to
Content
Using 2.5.1rc1, copy (or type) the following code on windows 32 using 
jre 1.6.0_14 into the interactive console:

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 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 04:06:37funkychocobosetmessageid: <1252037197.3.0.277378061468.issue1365@psf.upfronthosting.co.za>
2009-09-04 04:06:37funkychocobosetrecipients: + funkychocobo, fwierzbicki, undefined
2009-09-04 04:06:37funkychocobolinkissue1365 messages
2009-09-04 04:06:36funkychocobocreate