http-old flake8 fixes

This commit is contained in:
lakshyacis 2019-09-03 14:34:17 +05:30
parent d8ea0afe40
commit 5fcb7fc05e
No known key found for this signature in database
GPG Key ID: D2C539C8EC63E9EB
1 changed files with 3 additions and 2 deletions

View File

@ -24,7 +24,7 @@ class HTTPClient(asyncore.dispatcher):
self.close()
def handle_read(self):
# print self.recv(8192)
# print self.recv(8192)
self.recv(8192)
def writable(self):
@ -34,6 +34,7 @@ class HTTPClient(asyncore.dispatcher):
sent = self.send(self.buffer)
self.buffer = self.buffer[sent:]
if __name__ == "__main__":
# initial fill
for i in range(parallel):
@ -44,6 +45,6 @@ if __name__ == "__main__":
for i in range(parallel - len(asyncore.socket_map)):
HTTPClient('127.0.0.1', '/')
print "Active connections: %i" % (len(asyncore.socket_map))
asyncore.loop(count=len(asyncore.socket_map)/2)
asyncore.loop(count=len(asyncore.socket_map) / 2)
if requestCount % 100 == 0:
print "Processed %i total messages" % (requestCount)