reformat comment

This commit is contained in:
Benjamin Peterson 2010-08-31 20:10:55 +00:00
parent 19d6a4fd49
commit 49203dc9f2
1 changed files with 2 additions and 2 deletions

View File

@ -173,11 +173,11 @@ class socket(_socket.socket):
self.close()
def _real_close(self, _ss=_socket.socket):
# This function should not reference any globals. See Issue808164
# This function should not reference any globals. See issue #808164.
_ss.close(self)
def close(self):
# This function should not reference any globals. See Issue808164
# This function should not reference any globals. See issue #808164.
self._closed = True
if self._io_refs <= 0:
self._real_close()