Ramchandra Apte added the comment:

Here's a patch on revision 75fe7f5fda9a (I did it on a trip without an internet 
connection)
There might be some mistakes of this type:
I incorrectly changed instances like this
`
try:
    something
except:
    close file
    raise
`
to
`
try:
    something
finally:
    close file
`
(the incorrect version closes the file always)

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue16261>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to