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
4fb8bf70
Commit
4fb8bf70
authored
Oct 14, 2010
by
Leonardo Rochael Almeida
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
resync with trunk
parent
e7d75f99
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
6 deletions
+11
-6
CHANGES.txt
CHANGES.txt
+6
-1
setup.py
setup.py
+1
-1
src/Acquisition/tests.py
src/Acquisition/tests.py
+4
-4
No files found.
CHANGES.txt
View file @
4fb8bf70
Changelog
=========
2.13.
5
(unreleased)
2.13.
6
(unreleased)
-------------------
2.13.5 (2010-09-29)
-------------------
- Fixed unit tests that failed on 64bit Python on Windows machines.
2.13.4 (2010-08-31)
-------------------
...
...
setup.py
View file @
4fb8bf70
...
...
@@ -17,7 +17,7 @@ import os
from
setuptools
import
setup
,
find_packages
,
Extension
setup
(
name
=
'Acquisition'
,
version
=
'2.13.
5
dev'
,
version
=
'2.13.
6
dev'
,
url
=
'http://pypi.python.org/pypi/Acquisition'
,
license
=
'ZPL 2.1'
,
description
=
"Acquisition is a mechanism that allows objects to obtain "
...
...
src/Acquisition/tests.py
View file @
4fb8bf70
...
...
@@ -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