]> granicus.if.org Git - python/commitdiff
reformat comment
authorBenjamin Peterson <benjamin@python.org>
Tue, 31 Aug 2010 20:10:55 +0000 (20:10 +0000)
committerBenjamin Peterson <benjamin@python.org>
Tue, 31 Aug 2010 20:10:55 +0000 (20:10 +0000)
Lib/socket.py

index 30a01aa198674610dfa53d77674c3b20430862d1..89fe36e7f9a2749cc124290730cc9b018263afa4 100644 (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()