On 4/18/2012 3:08, Kiuhnm wrote:
I'm using Python 3.2.2, 64 bit on Windows 7.

Consider this code:
--->
print(1)
print(2)
print(3)

with open('test') as f:
data = f.read()
with open('test') as f:
data = f.read()
<---
If I debug this code with
python -m pdb script.py
and I issue the command
j 7
Python crashes.

I read that bug fix releases have a 6-month cycle :(
It seems that I'll have to work around the problem...

Kiuhnm
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to