mirror of
https://github.com/django/django.git
synced 2025-10-09 18:12:39 +00:00
Refs #23919 -- Removed misc references to Python 2.
This commit is contained in:
parent
c22212220a
commit
d170c63351
34 changed files with 40 additions and 167 deletions
|
@ -7,15 +7,10 @@ from django.utils.functional import SimpleLazyObject
|
|||
|
||||
class TestUtilsSimpleLazyObjectDjangoTestCase(TestCase):
|
||||
|
||||
def test_pickle_py2_regression(self):
|
||||
# See ticket #20212
|
||||
def test_pickle(self):
|
||||
user = User.objects.create_user('johndoe', 'john@example.com', 'pass')
|
||||
x = SimpleLazyObject(lambda: user)
|
||||
|
||||
# This would fail with "TypeError: can't pickle instancemethod objects",
|
||||
# only on Python 2.X.
|
||||
pickle.dumps(x)
|
||||
|
||||
# Try the variant protocol levels.
|
||||
pickle.dumps(x, 0)
|
||||
pickle.dumps(x, 1)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue