1
0
mirror of https://github.com/django/django.git synced 2025-03-31 11:37:06 +00:00

Imported copyreg from six.moves

This commit is contained in:
Claude Paroz 2013-05-21 14:41:39 +02:00
parent 800513e7f3
commit fd961941cc

View File

@ -4,11 +4,7 @@ from functools import wraps
import sys
from django.utils import six
try:
import copyreg
except ImportError:
import copy_reg as copyreg
from django.utils.six.moves import copyreg
# You can't trivially replace this with `functools.partial` because this binds