[issue1767511] SocketServer.DatagramRequestHandler with empty response

2020-11-04 Thread Irit Katriel
Change by Irit Katriel : -- assignee: -> docs@python components: +Documentation nosy: +docs@python stage: patch review -> needs patch versions: +Python 3.10, Python 3.8, Python 3.9 -Python 2.6 ___ Python tracker

[issue1767511] SocketServer.DatagramRequestHandler with empty response

2016-02-22 Thread desbma
Changes by desbma : -- nosy: +desbma ___ Python tracker ___ ___ Python-bugs-list

[issue1767511] SocketServer.DatagramRequestHandler with empty response

2016-02-09 Thread Martin Panter
Martin Panter added the comment: Sorry that nobody has responded to your patch in almost a decade. :( Unfortunately in the meantime the test file seems to have been completely rewritten. For the original problem, I think it would be better if we just documented that this is the way it works.

[issue1767511] SocketServer.DatagramRequestHandler

2012-03-27 Thread Giampaolo Rodola'
Changes by Giampaolo Rodola' g.rod...@gmail.com: -- nosy: +giampaolo.rodola ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1767511 ___ ___

[issue1767511] SocketServer.DatagramRequestHandler

2010-06-09 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- versions: -Python 2.5 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1767511 ___ ___

[issue1767511] SocketServer.DatagramRequestHandler

2008-01-23 Thread Ben Bass
Ben Bass added the comment: I've just bumped into this issue. In my opinion the finish() method should only do anything if wfile is not empty, i.e: temp = self.wfile.getvalue() if temp: self.socket.sendto(temp, self.client_address) -- nosy: +bpb

[issue1767511] SocketServer.DatagramRequestHandler

2008-01-23 Thread Christian Heimes
Christian Heimes added the comment: Can you provide a working patch with a unit test and doc updates? -- nosy: +tiran type: - behavior versions: +Python 2.6 _ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1767511

[issue1767511] SocketServer.DatagramRequestHandler

2008-01-23 Thread Ben Bass
Ben Bass added the comment: Main issue here (as I see it) is that StreamRequestHandler and DatagramRequestHandler should behave in the same way. This is not the case in Python 2.5.1 for the case where the handle method does not respond to the request socket (e.g. in my case it is forwarding