http.server - reference to bug #427345
Where might I find the bug #427345 that is referred to in a comment inside http.server ? Here is a code excerpt: # throw away additional data [see bug #427345] while select.select([self.rfile._sock], [], [], 0)[0]: if not self.rfile._sock.recv(1): break
On Tue, Nov 23, 2010 at 22:28, Glenn Linderman <v+python@g.nevcal.com<v%2Bpython@g.nevcal.com>
wrote:
Where might I find the bug #427345 that is referred to in a comment inside http.server ? Here is a code excerpt:
# throw away additional data [see bug #427345] while select.select([self.rfile._sock], [], [], 0)[0]: if not self.rfile._sock.recv(1): break
http://bugs.python.org/issue427345 http://bugs.python.org/ has a box on the left-hand side where you can enter issue numbers.
On Tue, 23 Nov 2010 22:35:10 -0600 Brian Curtin <brian.curtin@gmail.com> wrote:
On Tue, Nov 23, 2010 at 22:28, Glenn Linderman <v+python@g.nevcal.com<v%2Bpython@g.nevcal.com>
wrote:
Where might I find the bug #427345 that is referred to in a comment inside http.server ? Here is a code excerpt:
# throw away additional data [see bug #427345] while select.select([self.rfile._sock], [], [], 0)[0]: if not self.rfile._sock.recv(1): break
http://bugs.python.org/issue427345
http://bugs.python.org/ has a box on the left-hand side where you can enter issue numbers.
And of course you can also reverse-engineer the clever URL scheme used by Roundup bug entries ;) Regards Antoine.
participants (3)
-
Antoine Pitrou
-
Brian Curtin
-
Glenn Linderman