[issue9617] Buffered IO shouldn't ignore incoming signals during a partial write

2010-08-21 Thread Antoine Pitrou
Antoine Pitrou added the comment: Issue fixed in r84239 (trunk), r84240 (2.7) and r84241 (3.1). -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker _

[issue9617] Buffered IO shouldn't ignore incoming signals during a partial write

2010-08-15 Thread Antoine Pitrou
Antoine Pitrou added the comment: Another possibility is to do the check in the FileIO object instead. Both approaches give the same results for standard file descriptor IO. -- ___ Python tracker _

[issue9617] Buffered IO shouldn't ignore incoming signals during a partial write

2010-08-15 Thread Antoine Pitrou
New submission from Antoine Pitrou : Prompted by Martin in #9611, here is a patch fixing the new buffered IO layer so that an incoming signal during a successful partial write() doesn't get ignored. Tests included. -- components: IO files: sigbufio.patch keywords: patch messages: 11401