1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Removed threading fallback imports.

Django imports threading in many other places without fallback.
This commit is contained in:
Tim Graham
2015-01-28 09:55:52 -05:00
parent cd91486213
commit 18f3e79b13
6 changed files with 6 additions and 33 deletions

View File

@@ -1,10 +1,7 @@
from __future__ import unicode_literals
import sys
try:
import threading
except ImportError:
threading = None
import threading
import time
from unittest import skipIf, skipUnless