From c83b024b37a448e3eece766a435cf148c806a22d Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Thu, 13 Nov 2014 10:30:36 +0100 Subject: [PATCH] [1.4.x] Removed thread customizations of six which are now built-in. Backport of 7ef81b5cdd4c8eda12aa7786484a0bfde00aaaa4 from master --- django/utils/six.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/django/utils/six.py b/django/utils/six.py index ccc180c954..521a384d83 100644 --- a/django/utils/six.py +++ b/django/utils/six.py @@ -786,7 +786,3 @@ def assertRaisesRegex(self, *args, **kwargs): def assertRegex(self, *args, **kwargs): return getattr(self, _assertRegex)(*args, **kwargs) - - -add_move(MovedModule("_dummy_thread", "dummy_thread")) -add_move(MovedModule("_thread", "thread"))