summaryrefslogtreecommitdiff
path: root/tests/patcher_test_threading_patched.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/patcher_test_threading_patched.py')
-rw-r--r--tests/patcher_test_threading_patched.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/patcher_test_threading_patched.py b/tests/patcher_test_threading_patched.py
new file mode 100644
index 0000000..78ac9aa
--- /dev/null
+++ b/tests/patcher_test_threading_patched.py
@@ -0,0 +1,15 @@
+# no standard tests in this file, ignore
+__test__ = False
+
+if __name__ == '__main__':
+ import eventlet
+ eventlet.monkey_patch()
+ import threading
+
+ def test():
+ print(repr(threading.currentThread()))
+
+ t = threading.Thread(target=test)
+ t.start()
+ t.join()
+ print(len(threading._active))