[issue16488] Add context manager support to epoll object

2013-01-26 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : -- nosy: +jcea ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue16488] Add context manager support to epoll object

2012-12-15 Thread Antoine Pitrou
Antoine Pitrou added the comment: Committed, thank you! -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ _

[issue16488] Add context manager support to epoll object

2012-12-15 Thread Roundup Robot
Roundup Robot added the comment: New changeset d6f61cd364d9 by Antoine Pitrou in branch 'default': Issue #16488: epoll() objects now support the `with` statement. http://hg.python.org/cpython/rev/d6f61cd364d9 -- nosy: +python-dev ___ Python tracker <

[issue16488] Add context manager support to epoll object

2012-11-23 Thread Andrew Svetlov
Andrew Svetlov added the comment: +0 for patch -- nosy: +asvetlov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue16488] Add context manager support to epoll object

2012-11-16 Thread Antoine Pitrou
Antoine Pitrou added the comment: I don't think that's very useful since generally the epoll object will have to survive accross function calls (it's usually stored as an attribute somewhere on your event loop). On the other hand, this addition doesn't hurt. -- nosy: +pitrou

[issue16488] Add context manager support to epoll object

2012-11-16 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: The proposed patch adds support of context manager protocol to epoll objects. -- components: Extension Modules files: select_epoll_context_manager.patch keywords: patch messages: 175693 nosy: serhiy.storchaka priority: normal severity: normal stage: