diff options
Diffstat (limited to 'examples/nonblocking.py')
-rw-r--r-- | examples/nonblocking.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/examples/nonblocking.py b/examples/nonblocking.py deleted file mode 100644 index 7bc9c07b..00000000 --- a/examples/nonblocking.py +++ /dev/null @@ -1,9 +0,0 @@ -import time -from libmproxy.script import concurrent - - -@concurrent # Remove this and see what happens -def request(context, flow): - print("handle request: %s%s" % (flow.request.host, flow.request.path)) - time.sleep(5) - print("start request: %s%s" % (flow.request.host, flow.request.path)) |