resync with trunk

parent e7d75f99
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)
-------------------
......
......@@ -17,7 +17,7 @@ import os
from setuptools import setup, find_packages, Extension
setup(name='Acquisition',
version = '2.13.5dev',
version = '2.13.6dev',
url='http://pypi.python.org/pypi/Acquisition',
license='ZPL 2.1',
description="Acquisition is a mechanism that allows objects to obtain "
......
......@@ -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