[issue2067] file.__exit__ does not call subclass' close method

2008-02-23 Thread Ralf Schmitt
Ralf Schmitt added the comment: Isn't this a candidate for backporting to 2.5? __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsub

[issue2067] file.__exit__ does not call subclass' close method

2008-02-23 Thread Georg Brandl
Georg Brandl added the comment: Committed r60984. -- nosy: +georg.brandl resolution: -> accepted status: open -> closed __ Tracker <[EMAIL PROTECTED]> __ _

[issue2067] file.__exit__ does not call subclass' close method

2008-02-15 Thread Ralf Schmitt
Ralf Schmitt added the comment: The patch looks good, I've tested it on trunk and also release25-maint. It applies with fuzz and one has to add a "from __future import with_statement". I think this should also be applied to release25-maint. IMHO, this is a rather severe problem, as it can easily

[issue2067] file.__exit__ does not call subclass' close method

2008-02-11 Thread Alexander Belopolsky
New submission from Alexander Belopolsky: Attached patch makes file.__exit__ call subclass' close method. -- components: Interpreter Core files: file_exit.diff messages: 62289 nosy: belopolsky severity: normal status: open title: file.__exit__ does not call subclass' close method type: b