Commit 2fa22818 authored by Giampaolo Rodola's avatar Giampaolo Rodola

(bug #8684) fix 'fedora without thread buildbot' as per http://bugs.python.org/issue8684

parent 2b1cc895
......@@ -30,8 +30,11 @@ has another way to reference private data (besides global variables).
import time
import heapq
import threading
from collections import namedtuple
try:
import threading
except ImportError:
import dummy_threading as threading
__all__ = ["scheduler"]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment