summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_time.py
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2002-04-16 12:37:55 (GMT)
committerBarry Warsaw <barry@python.org>2002-04-16 12:37:55 (GMT)
commit4eaf50f4357587da0c444a4f40eb329f78680acc (patch)
treefbbb5275a02d7029f0386808abdb6534b410ed16 /Lib/test/test_time.py
parente8aea58b99c28bf7404cc9bf292c0a9edd3fd4e5 (diff)
downloadcpython-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/test/test_time.py')
-rw-r--r--Lib/test/test_time.py6
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)