From: Benjamin Peterson Date: Tue, 31 Aug 2010 20:10:55 +0000 (+0000) Subject: reformat comment X-Git-Tag: v3.2a2~100 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=49203dc9f2229b76c7b49a27e6793edbc99f8646;p=thirdparty%2FPython%2Fcpython.git reformat comment --- diff --git a/Lib/socket.py b/Lib/socket.py index 30a01aa19867..89fe36e7f9a2 100644 --- a/Lib/socket.py +++ b/Lib/socket.py @@ -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()