We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 356c829 commit 9f5c495Copy full SHA for 9f5c495
testkitbackend/server.py
@@ -23,6 +23,9 @@ class Server(TCPServer):
23
24
def __init__(self, address):
25
class Handler(StreamRequestHandler):
26
+ # undocumented config but unbearably slow without
27
+ wbufsize = 2 ** 16 # 64 KiB
28
+
29
def handle(self):
30
backend = Backend(self.rfile, self.wfile)
31
try:
0 commit comments