提交 e0631326 编写于 作者: C Carl Meyer

Merge pull request #455 from dengzhp/develop

use dummy_threading when the threading module is not present.
......@@ -5,7 +5,10 @@ import os
import re
import gzip
import mimetypes
import threading
try:
import threading
except ImportError:
import dummy_threading as threading
import posixpath
import pkg_resources
import random
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册