Leave two lines of separation between top level definitions

This commit is contained in:
Braulio Valdivielso Martínez
2016-03-05 23:11:31 +01:00
parent 3c3bde5381
commit 66c52c3ce0
+2
View File
@@ -2,6 +2,7 @@ import threading
import socket
import select
def consume_socket_content(sock, timeout=0.5):
chunks = 65536
content = ""
@@ -19,6 +20,7 @@ def consume_socket_content(sock, timeout=0.5):
return content
class Server(threading.Thread):
"""Dummy server using for unit testing"""
WAIT_EVENT_TIMEOUT = 5