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

This commit is contained in:
Giampaolo Rodola' 2011-12-19 19:12:01 +01:00
parent 2b1cc89572
commit 2fa22818bd

View file

@ -30,8 +30,11 @@
import time
import heapq
import threading
from collections import namedtuple
try:
import threading
except ImportError:
import dummy_threading as threading
__all__ = ["scheduler"]