From 0b53579d85a96bd5f7b4e5fa575d7694867a5150 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Mon, 19 Jan 2015 23:24:02 +0200 Subject: [PATCH] select: Clarify comment. --- select/select.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/select/select.py b/select/select.py index 4094da30..29d10881 100644 --- a/select/select.py +++ b/select/select.py @@ -54,7 +54,8 @@ class Epoll: r = epoll_ctl(self.epfd, EPOLL_CTL_MOD, fd, s) os.check_error(r) # We must keep reference to retval, or it may be GCed. And we must - # keep mapping from fd to retval to be able to get rid of retval reference. + # keep mapping from fd to retval to be able to get rid of this retval + # reference later. self.registry[fd] = retval def unregister(self, fd):