[Python-checkins] cpython: Fix devpoll_dealloc().

richard.oudkerk python-checkins at python.org
Thu Aug 22 15:15:38 CEST 2013


http://hg.python.org/cpython/rev/caf72b44240b
changeset:   85322:caf72b44240b
user:        Richard Oudkerk <shibturn at gmail.com>
date:        Thu Aug 22 14:03:44 2013 +0100
summary:
  Fix devpoll_dealloc().

files:
  Modules/selectmodule.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Modules/selectmodule.c b/Modules/selectmodule.c
--- a/Modules/selectmodule.c
+++ b/Modules/selectmodule.c
@@ -1040,7 +1040,7 @@
 static void
 devpoll_dealloc(devpollObject *self)
 {
-    (void)devpoll_internal_close();
+    (void)devpoll_internal_close(self);
     PyMem_DEL(self->fds);
     PyObject_Del(self);
 }

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list