This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Ramchandra Apte
Recipients Ramchandra Apte, asvetlov, brett.cannon, eric.araujo, python-dev
Date 2013-01-09.13:47:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1357739235.5.0.30198713176.issue16261@psf.upfronthosting.co.za>
In-reply-to
Content
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)
History
Date User Action Args
2013-01-09 13:47:15Ramchandra Aptesetrecipients: + Ramchandra Apte, brett.cannon, eric.araujo, asvetlov, python-dev
2013-01-09 13:47:15Ramchandra Aptesetmessageid: <1357739235.5.0.30198713176.issue16261@psf.upfronthosting.co.za>
2013-01-09 13:47:15Ramchandra Aptelinkissue16261 messages
2013-01-09 13:47:15Ramchandra Aptecreate