[issue5955] aifc: close() does not close the underlying file

2009-05-08 Thread Georg Brandl
Changes by Georg Brandl : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue5955] aifc: close() does not close the underlying file

2009-05-07 Thread R. David Murray
R. David Murray added the comment: Fixed in r72425. -- components: +Library (Lib) priority: -> normal resolution: -> fixed stage: -> committed/rejected type: -> behavior ___ Python tracker _

[issue5955] aifc: close() does not close the underlying file

2009-05-07 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: Sorry, but the problem still exists. self._file is a chunk.Chunk object, and its close() method does nothing. Adding "self.file = None" at the end of chunk.Chunk.close() helps, even if this relies on reference counting to close the file. -- resol

[issue5955] aifc: close() does not close the underlying file

2009-05-07 Thread Benjamin Peterson
Benjamin Peterson added the comment: Fixed in r72422. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Pytho

[issue5955] aifc: close() does not close the underlying file

2009-05-07 Thread Amaury Forgeot d'Arc
New submission from Amaury Forgeot d'Arc : Seen on Windows buildbot: 'test_aifc' left behind file '@test' and it couldn't be removed: [Error 32] The process cannot access the file because it is being used by another process: '@test' This is because Aifc_read.close() does not close the underlying