diff options
author | Guido van Rossum <guido@python.org> | 2003-02-07 21:49:01 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2003-02-07 21:49:01 (GMT) |
commit | 275666fd50eaf494448ba102652d4273b135a017 (patch) | |
tree | aa6a32686267b6434fadbeeb4d1d2774c9403ec5 | |
parent | cef9db6db5bd406fd5d77e88b37816fd903aec0c (diff) | |
download | cpython-275666fd50eaf494448ba102652d4273b135a017.zip cpython-275666fd50eaf494448ba102652d4273b135a017.tar.gz cpython-275666fd50eaf494448ba102652d4273b135a017.tar.bz2 |
Merge the test part of the below checkin to the sandbox and Zope3, so
the tests will remain in sync:
"""
Tres discovered a weird bug when a datetime is pickled, caused by the
shadowing of __year, __month, __day and the use of proxies.
Here's a quick fix and a quick unit test. I don't quite understand
why this wasn't caught by the pickling unit tests.
"""
-rw-r--r-- | Lib/test/test_datetime.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Lib/test/test_datetime.py b/Lib/test/test_datetime.py index 712a349..6acf073 100644 --- a/Lib/test/test_datetime.py +++ b/Lib/test/test_datetime.py @@ -1176,6 +1176,14 @@ class TestDateTime(TestDate): derived = unpickler.loads(green) self.assertEqual(orig, derived) + def test_more_pickling(self): + a = self.theclass(2003, 2, 7, 16, 48, 37, 444116) + s = pickle.dumps(a) + b = pickle.loads(s) + self.assertEqual(b.year, 2003) + self.assertEqual(b.month, 2) + self.assertEqual(b.day, 7) + def test_more_compare(self): # The test_compare() inherited from TestDate covers the error cases. # We just want to test lexicographic ordering on the members datetime |