Commit 27188f79 authored by Jeremy Hylton's avatar Jeremy Hylton

silence warning about integer overflow

parent aba0855f
......@@ -117,7 +117,7 @@ class DRI_Tests( unittest.TestCase ):
def _badlong(self):
work = DateRangeIndex ('work', 'start', 'stop' )
bad = Dummy( 'bad', sys.maxint + 1, sys.maxint + 1 )
bad = Dummy( 'bad', long(sys.maxint) + 1, long(sys.maxint) + 1 )
work.index_object( 0, bad )
def test_suite():
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment