Re: [Zope3-dev] Testing ZODB in Python2.5.

2007-06-08 Thread nikhil n
Tim Peters [EMAIL PROTECTED] wrote: This is actually due to changes in Python's `struct` module, more accidentally than not related to the ongoing int/long unification. I think it's better to change the specific test that failed; e.g., change the u64(oid) part to int(u64(oid))

[Zope3-dev] Testing ZODB in Python2.5.

2007-06-06 Thread nikhil n
ZODB shows an error when tested with python2.5.(http://zope3.pastey.net/52960) I think Python 2.5 unified long and normal integer and this caused the error. Is it enough that we add a renormalizer in testrunner.py? ___ Zope3-dev mailing list

Re: [Zope3-dev] Testing ZODB in Python2.5.

2007-06-06 Thread Benji York
nikhil n wrote: ZODB shows an error when tested with python2.5.(http://zope3.pastey.net/52960) I think Python 2.5 unified long and normal integer and this caused the error. Is it enough that we add a renormalizer in testrunner.py? Looks like it to me, but you should ask the real experts at

Re: [Zope3-dev] Testing ZODB in Python2.5.

2007-06-06 Thread Tim Peters
[nikhil n] ZODB shows an error when tested with python2.5.(http://zope3.pastey.net/52960) I think Python 2.5 unified long and normal integer and this caused the error. This is actually due to changes in Python's `struct` module, more accidentally than not related to the ongoing int/long