summaryrefslogtreecommitdiff
path: root/dogpile/core/util.py
diff options
context:
space:
mode:
Diffstat (limited to 'dogpile/core/util.py')
-rw-r--r--dogpile/core/util.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/dogpile/core/util.py b/dogpile/core/util.py
new file mode 100644
index 0000000..ac40554
--- /dev/null
+++ b/dogpile/core/util.py
@@ -0,0 +1,7 @@
+try:
+ import threading
+ import thread
+except ImportError:
+ import dummy_threading as threading
+ import dummy_thread as thread
+