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:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user