Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Acquisition
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Acquisition
Commits
fdb3be4c
Commit
fdb3be4c
authored
Sep 27, 2010
by
Nikolay Kim
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
The problem is sys.maxint on 32bit and 64bit python on windows are same.
parent
9b6421db
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
CHANGES.txt
CHANGES.txt
+2
-0
src/Acquisition/tests.py
src/Acquisition/tests.py
+4
-4
No files found.
CHANGES.txt
View file @
fdb3be4c
...
...
@@ -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)
-------------------
...
...
src/Acquisition/tests.py
View file @
fdb3be4c
...
...
@@ -1840,7 +1840,7 @@ def test_proxying():
>>> c[5:10]
slicing...
(5, 10)
>>> c[5:] == (5, sys.max
int
)
>>> c[5:] == (5, sys.max
size
)
slicing...
True
...
...
@@ -1863,7 +1863,7 @@ def test_proxying():
>>> i.c[5:10]
slicing...
(5, 10)
>>> i.c[5:] == (5, sys.max
int
)
>>> i.c[5:] == (5, sys.max
size
)
slicing...
True
...
...
@@ -1904,7 +1904,7 @@ def test_proxying():
>>> c[5:10]
slicing...
(5, 10)
>>> c[5:] == (5, sys.max
int
)
>>> c[5:] == (5, sys.max
size
)
slicing...
True
...
...
@@ -1927,7 +1927,7 @@ def test_proxying():
>>> i.c[5:10]
slicing...
(5, 10)
>>> i.c[5:] == (5, sys.max
int
)
>>> i.c[5:] == (5, sys.max
size
)
slicing...
True
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment