diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2007-02-18 08:54:32 +0000 |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2007-02-18 08:54:32 +0000 |
commit | 497380f48c266a1d1addc4a20a93aef9a380ffdf (patch) | |
tree | cb661342bc8b897104fed04d16d94d4321b905fa /Lib/test | |
parent | b8d661bd5e69f6717fe2b636d6963d03aba5189d (diff) | |
download | cpython-git-497380f48c266a1d1addc4a20a93aef9a380ffdf.tar.gz |
Revert r53672.
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_datetime.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Lib/test/test_datetime.py b/Lib/test/test_datetime.py index 3aa0468837..436cfcad75 100644 --- a/Lib/test/test_datetime.py +++ b/Lib/test/test_datetime.py @@ -1740,11 +1740,6 @@ class TestTime(HarmlessMixedComparison): self.assertEqual(t.isoformat(), "00:00:00.100000") self.assertEqual(t.isoformat(), str(t)) - def test_1653736(self): - # verify it doesn't accept extra keyword arguments - t = self.theclass(second=1) - self.assertRaises(TypeError, t.isoformat, foo=3) - def test_strftime(self): t = self.theclass(1, 2, 3, 4) self.assertEqual(t.strftime('%H %M %S'), "01 02 03") |