Commit fdb3be4c authored by Nikolay Kim's avatar Nikolay Kim

The problem is sys.maxint on 32bit and 64bit python on windows are same.

parent 9b6421db
......@@ -4,6 +4,8 @@ Changelog
2.13.5 (unreleased)
-------------------
- Fixed unit tests that failed on 64bit python on Windows machines
2.13.4 (2010-08-31)
-------------------
......
......@@ -1840,7 +1840,7 @@ def test_proxying():
>>> c[5:10]
slicing...
(5, 10)
>>> c[5:] == (5, sys.maxint)
>>> c[5:] == (5, sys.maxsize)
slicing...
True
......@@ -1863,7 +1863,7 @@ def test_proxying():
>>> i.c[5:10]
slicing...
(5, 10)
>>> i.c[5:] == (5, sys.maxint)
>>> i.c[5:] == (5, sys.maxsize)
slicing...
True
......@@ -1904,7 +1904,7 @@ def test_proxying():
>>> c[5:10]
slicing...
(5, 10)
>>> c[5:] == (5, sys.maxint)
>>> c[5:] == (5, sys.maxsize)
slicing...
True
......@@ -1927,7 +1927,7 @@ def test_proxying():
>>> i.c[5:10]
slicing...
(5, 10)
>>> i.c[5:] == (5, sys.maxint)
>>> i.c[5:] == (5, sys.maxsize)
slicing...
True
......
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