[pypy-commit] pypy default: Another test now fixed (by amaury).

arigo noreply at buildbot.pypy.org
Thu Jul 11 22:00:01 CEST 2013


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r65353:9919fe43fdef
Date: 2013-07-11 21:59 +0200
http://bitbucket.org/pypy/pypy/changeset/9919fe43fdef/

Log:	Another test now fixed (by amaury).

diff --git a/pypy/module/rctime/test/test_rctime.py b/pypy/module/rctime/test/test_rctime.py
--- a/pypy/module/rctime/test/test_rctime.py
+++ b/pypy/module/rctime/test/test_rctime.py
@@ -43,6 +43,7 @@
         assert isinstance(res, str)
         rctime.ctime(rctime.time())
         raises(ValueError, rctime.ctime, 1E200)
+        raises(OverflowError, rctime.ctime, 10**900)
 
     def test_gmtime(self):
         import time as rctime


More information about the pypy-commit mailing list