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