From 7d83418b609745d277e399d1bf09efa2a1d97863 Mon Sep 17 00:00:00 2001 From: Benoit Chesneau Date: Thu, 21 Jan 2010 14:25:45 +0100 Subject: [PATCH] don't need this comment --- gunicorn/util.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/gunicorn/util.py b/gunicorn/util.py index c3ac3789..cd5bc8a1 100644 --- a/gunicorn/util.py +++ b/gunicorn/util.py @@ -29,9 +29,6 @@ def close_on_exec(fd): fcntl.fcntl(fd, fcntl.F_SETFL, flags) def close(sock): - """ socket.close() doesn't *really* close if - there's another reference to it in the TCP/IP stack. - (trick from twisted)""" try: sock.close() except socket.error: