diff options
author | Raymond Hettinger <python@rcn.com> | 2008-01-15 05:39:59 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2008-01-15 05:39:59 (GMT) |
commit | cbf8f6cffb94123ec964155aa02124e4f838b5e1 (patch) | |
tree | ad1443fafaa358d7a949845e47c34d425f8ed17a /Lib | |
parent | f233b0c454cbdca54c510f7b77fb3a64dcd05f1e (diff) | |
download | cpython-cbf8f6cffb94123ec964155aa02124e4f838b5e1.zip cpython-cbf8f6cffb94123ec964155aa02124e4f838b5e1.tar.gz cpython-cbf8f6cffb94123ec964155aa02124e4f838b5e1.tar.bz2 |
Temporarily revert 59967 until GC can be added.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_structseq.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Lib/test/test_structseq.py b/Lib/test/test_structseq.py index 02c2f72..83c7ccf 100644 --- a/Lib/test/test_structseq.py +++ b/Lib/test/test_structseq.py @@ -26,12 +26,6 @@ class StructSeqTest(unittest.TestCase): for i in xrange(-len(t), len(t)-1): self.assertEqual(t[i], astuple[i]) - def test_tuple_subclass(self): - # Issue 1820 - t = time.localtime() - s = ('%s ' * len(t)) % t # This used to fail because t was not a tuple subclass - self.assert_(isinstance(t, tuple)) - def test_repr(self): t = time.gmtime() self.assert_(repr(t)) |