diff options
author | Barry Warsaw <barry@python.org> | 2002-04-16 12:37:55 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2002-04-16 12:37:55 (GMT) |
commit | 4eaf50f4357587da0c444a4f40eb329f78680acc (patch) | |
tree | fbbb5275a02d7029f0386808abdb6534b410ed16 /Lib | |
parent | e8aea58b99c28bf7404cc9bf292c0a9edd3fd4e5 (diff) | |
download | cpython-4eaf50f4357587da0c444a4f40eb329f78680acc.zip cpython-4eaf50f4357587da0c444a4f40eb329f78680acc.tar.gz cpython-4eaf50f4357587da0c444a4f40eb329f78680acc.tar.bz2 |
test_mktime(): Removed. This wasn't really testing anything useful
(or platform independent). Closes SF bug #460357.
Bug fix candidate.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_time.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Lib/test/test_time.py b/Lib/test/test_time.py index b2a3a28..1289931 100644 --- a/Lib/test/test_time.py +++ b/Lib/test/test_time.py @@ -41,12 +41,6 @@ class TimeTestCase(unittest.TestCase): time.asctime(time.gmtime(self.t)) self.assertRaises(TypeError, time.asctime, 0) - def test_mktime(self): - self.assertRaises(OverflowError, - time.mktime, (999999, 999999, 999999, 999999, - 999999, 999999, 999999, 999999, - 999999)) - def test_main(): test_support.run_unittest(TimeTestCase) |