summaryrefslogtreecommitdiff
path: root/django/utils
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-10-05 08:07:27 -0400
committerTim Graham <timograham@gmail.com>2015-10-05 08:07:27 -0400
commitea8e7fd989095c1444528c8b9808076985d5ea0a (patch)
treee41ba254081be3f3c7168425f3450f20fbd6c985 /django/utils
parent58195f0b16999245ada6bd010b71c9c5352ae608 (diff)
Removed obsolete (since Python 2.3) __safe_for_unpickling__ attribute.
Diffstat (limited to 'django/utils')
-rw-r--r--django/utils/functional.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/django/utils/functional.py b/django/utils/functional.py
index c487cd8517..978d152be2 100644
--- a/django/utils/functional.py
+++ b/django/utils/functional.py
@@ -314,7 +314,6 @@ def unpickle_lazyobject(wrapped):
wrapped object.
"""
return wrapped
-unpickle_lazyobject.__safe_for_unpickling__ = True
# Workaround for http://bugs.python.org/issue12370