Re: [Zope-dev] Zope Tests: 10 OK, 4 Failed, 2 Unknown

2010-05-04 Thread Zvezdan Petkovic
On May 4, 2010, at 6:07 AM, Martijn Faassen wrote: > For a while already people have been making changes that at least break > tests on 2.4. For instance, zope.testing has some facility to pretty print a > dictionary that sorts the keys, because Python 2.4's built-in pretty print > module appar

Re: [Zope-dev] Zope Tests: 10 OK, 4 Failed, 2 Unknown

2010-05-04 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Lennart Regebro wrote: > On Mon, May 3, 2010 at 20:02, Tres Seaver wrote: >> - - zope.browserpage >> - - zope.viewlet >> - - zope.contentprovider >> - - zope.deferredimport > > These tests all fail because as Tres pointed out, Python 2.4 doesn't > se

Re: [Zope-dev] Zope Tests: 10 OK, 4 Failed, 2 Unknown

2010-05-04 Thread Lennart Regebro
On Tue, May 4, 2010 at 12:07, Martijn Faassen wrote: > For a while already people have been making changes that at least break > tests on 2.4. For instance, zope.testing has some facility to pretty > print a dictionary that sorts the keys, because Python 2.4's built-in > pretty print module appare

Re: [Zope-dev] Zope Tests: 10 OK, 4 Failed, 2 Unknown

2010-05-04 Thread Martijn Faassen
Hanno Schlichting wrote: > Dropping Python 2.4 supports makes most sense to me at this stage. > Zope2/Plone only support Python 2.6 for any modern version. > > I don't know what BlueBream and Grok want to support, but would guess > they aim for Python 2.5 + 2.6 support. 2.4 is really old by now.

Re: [Zope-dev] Zope Tests: 10 OK, 4 Failed, 2 Unknown

2010-05-04 Thread Martijn Faassen
Hi there, Christophe Combelles wrote: > Unless I missed something, the ZTK was globally compatible with Python2.4 > recently, wasn't it? Do we want the latest changes and Lennart's work to be > part of the ZTK 1.0? For a while already people have been making changes that at least break tests

Re: [Zope-dev] Zope Tests: 10 OK, 4 Failed, 2 Unknown

2010-05-04 Thread Lennart Regebro
On Mon, May 3, 2010 at 20:02, Tres Seaver wrote: > - - zope.browserpage > - - zope.viewlet > - - zope.contentprovider > - - zope.deferredimport These tests all fail because as Tres pointed out, Python 2.4 doesn't set __file__ to the doctest filename in the globals. Zope.browserpage in turn uses t

Re: [Zope-dev] Zope Tests: 10 OK, 4 Failed, 2 Unknown

2010-05-03 Thread Lennart Regebro
On Tue, May 4, 2010 at 00:41, Christophe Combelles wrote: > Unless I missed something, the ZTK was globally compatible with Python2.4 > recently, wasn't it?  Do we want the latest changes and Lennart's work to be > part of the ZTK 1.0? I think it's OK if they are not. Of course it would be cool i

Re: [Zope-dev] Zope Tests: 10 OK, 4 Failed, 2 Unknown

2010-05-03 Thread Baiju M
On Tue, May 4, 2010 at 4:24 AM, Hanno Schlichting wrote: > Dropping Python 2.4 supports makes most sense to me at this stage. > Zope2/Plone only support Python 2.6 for any modern version. > > I don't know what BlueBream and Grok want to support, but would guess > they aim for Python 2.5 + 2.6 supp

Re: [Zope-dev] Zope Tests: 10 OK, 4 Failed, 2 Unknown

2010-05-03 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Christophe Combelles wrote: > Hanno Schlichting a écrit : >> On Mon, May 3, 2010 at 8:02 PM, Tres Seaver wrote: >>> Breakage in the following packages, but only on Python 2.4, and only in >>> doctests: >>> >>> - - zope.browserpage >>> - - zope.viewlet

Re: [Zope-dev] Zope Tests: 10 OK, 4 Failed, 2 Unknown

2010-05-03 Thread Hanno Schlichting
On Tue, May 4, 2010 at 12:41 AM, Christophe Combelles wrote: > Hanno Schlichting a écrit : >> Hhm. I'm inclined to drop 2.4 support here. Using a zope.testing that >> tries to be compatible all the way from 2.4 to 3.1 is quite a bit of a >> stretch. > > Unless I missed something, the ZTK was globa

Re: [Zope-dev] Zope Tests: 10 OK, 4 Failed, 2 Unknown

2010-05-03 Thread Christophe Combelles
Hanno Schlichting a écrit : > On Mon, May 3, 2010 at 8:02 PM, Tres Seaver wrote: >> Breakage in the following packages, but only on Python 2.4, and only in >> doctests: >> >> - - zope.browserpage >> - - zope.viewlet >> - - zope.contentprovider >> - - zope.deferredimport >> >> At least the first on

Re: [Zope-dev] Zope Tests: 10 OK, 4 Failed, 2 Unknown

2010-05-03 Thread Lennart Regebro
On Mon, May 3, 2010 at 20:02, Tres Seaver wrote: > At least the first one is due to doctests not exposing an '__file__' in > their faux-module globals under 2.4.  We might need to add Lennart's > monkeypatch under 2.4, or else drop 2.4 support altogether. Well, I don't want a monkey-patch product

Re: [Zope-dev] Zope Tests: 10 OK, 4 Failed, 2 Unknown

2010-05-03 Thread Charlie Clark
Am 03.05.2010, 20:06 Uhr, schrieb Hanno Schlichting : > Hhm. I'm inclined to drop 2.4 support here. Using a zope.testing that > tries to be compatible all the way from 2.4 to 3.1 is quite a bit of a > stretch. +1 Python 2.4 itself is on life-support only*. I know it's an abrupt change for anyo

Re: [Zope-dev] Zope Tests: 10 OK, 4 Failed, 2 Unknown

2010-05-03 Thread Hanno Schlichting
On Mon, May 3, 2010 at 8:02 PM, Tres Seaver wrote: > Breakage in the following packages, but only on Python 2.4, and only in > doctests: > > - - zope.browserpage > - - zope.viewlet > - - zope.contentprovider > - - zope.deferredimport > > At least the first one is due to doctests not exposing an '_

Re: [Zope-dev] Zope Tests: 10 OK, 4 Failed, 2 Unknown

2010-05-03 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 > Test failures > - > > Subject: FAILED: Repository policy check found errors in 670 projects > From: ct at gocept.com > Date: Sun May 2 21:17:48 EDT 2010 > URL: http://mail.zope.org/pipermail/zope-tests/2010-May/014232.html Expected br

[Zope-dev] Zope Tests: 10 OK, 4 Failed, 2 Unknown

2010-05-03 Thread Zope Tests Summarizer
Summary of messages to the zope-tests list. Period Sun May 2 12:00:00 2010 UTC to Mon May 3 12:00:00 2010 UTC. There were 16 messages: 6 from Zope Tests, 9 from ccomb at free.fr, 1 from ct at gocept.com. Test failures - Subject: FAILED: Repository policy check found errors in 670

[Zope-dev] Zope Tests: 10 OK, 4 Failed

2010-04-24 Thread Zope Tests Summarizer
Summary of messages to the zope-tests list. Period Fri Apr 23 12:00:00 2010 UTC to Sat Apr 24 12:00:00 2010 UTC. There were 14 messages: 6 from Zope Tests, 7 from ccomb at free.fr, 1 from ct at gocept.com. Test failures - Subject: FAILED: Repository policy check found errors in 670

Re: [Zope-dev] Zope Tests: 10 OK, 4 Failed

2010-04-23 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Zope Tests Summarizer wrote: > Test failures > - > > Subject: FAILED: Repository policy check found errors in 670 projects > From: ct at gocept.com > Date: Thu Apr 22 21:15:51 EDT 2010 > URL: http://mail.zope.org/pipermail/zope-tests/2010

[Zope-dev] Zope Tests: 10 OK, 4 Failed

2010-04-23 Thread Zope Tests Summarizer
Summary of messages to the zope-tests list. Period Thu Apr 22 12:00:00 2010 UTC to Fri Apr 23 12:00:00 2010 UTC. There were 14 messages: 6 from Zope Tests, 7 from ccomb at free.fr, 1 from ct at gocept.com. Test failures - Subject: FAILED: Repository policy check found errors in 670

[Zope-dev] Zope Tests: 10 OK, 4 Failed

2010-04-22 Thread Zope Tests Summarizer
Summary of messages to the zope-tests list. Period Wed Apr 21 12:00:00 2010 UTC to Thu Apr 22 12:00:00 2010 UTC. There were 14 messages: 6 from Zope Tests, 7 from ccomb at free.fr, 1 from ct at gocept.com. Test failures - Subject: FAILED: Repository policy check found errors in 669

[Zope-dev] Zope Tests: 10 OK, 4 Failed

2010-04-21 Thread Zope Tests Summarizer
Summary of messages to the zope-tests list. Period Tue Apr 20 12:00:00 2010 UTC to Wed Apr 21 12:00:00 2010 UTC. There were 14 messages: 6 from Zope Tests, 7 from ccomb at free.fr, 1 from ct at gocept.com. Test failures - Subject: FAILED: Repository policy check found errors in 669

[Zope-dev] Zope Tests: 10 OK, 4 Failed

2010-04-20 Thread Zope Tests Summarizer
Summary of messages to the zope-tests list. Period Mon Apr 19 12:00:00 2010 UTC to Tue Apr 20 12:00:00 2010 UTC. There were 14 messages: 6 from Zope Tests, 7 from ccomb at free.fr, 1 from ct at gocept.com. Test failures - Subject: FAILED: Repository policy check found errors in 669

Re: [Zope-dev] Zope Tests: 10 OK, 4 Failed

2010-04-19 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Zope Tests Summarizer wrote: > Test failures > - > > Subject: FAILED: Repository policy check found errors in 669 projects > From: ct at gocept.com > Date: Sun Apr 18 21:13:39 EDT 2010 > URL: http://mail.zope.org/pipermail/zope-tests/2010

[Zope-dev] Zope Tests: 10 OK, 4 Failed

2010-04-19 Thread Zope Tests Summarizer
Summary of messages to the zope-tests list. Period Sun Apr 18 12:00:00 2010 UTC to Mon Apr 19 12:00:00 2010 UTC. There were 14 messages: 6 from Zope Tests, 7 from ccomb at free.fr, 1 from ct at gocept.com. Test failures - Subject: FAILED: Repository policy check found errors in 669

[Zope-dev] Zope Tests: 10 OK, 4 Failed

2010-04-18 Thread Zope Tests Summarizer
Summary of messages to the zope-tests list. Period Sat Apr 17 12:00:00 2010 UTC to Sun Apr 18 12:00:00 2010 UTC. There were 14 messages: 6 from Zope Tests, 7 from ccomb at free.fr, 1 from ct at gocept.com. Test failures - Subject: FAILED: Repository policy check found errors in 669

[Zope-dev] Zope Tests: 10 OK, 4 Failed

2010-04-17 Thread Zope Tests Summarizer
Summary of messages to the zope-tests list. Period Fri Apr 16 12:00:00 2010 UTC to Sat Apr 17 12:00:00 2010 UTC. There were 14 messages: 6 from Zope Tests, 7 from ccomb at free.fr, 1 from ct at gocept.com. Test failures - Subject: FAILED: Repository policy check found errors in 668

[Zope-dev] Zope Tests: 10 OK, 4 Failed

2010-04-16 Thread Zope Tests Summarizer
Summary of messages to the zope-tests list. Period Thu Apr 15 12:00:00 2010 UTC to Fri Apr 16 12:00:00 2010 UTC. There were 14 messages: 6 from Zope Tests, 7 from ccomb at free.fr, 1 from ct at gocept.com. Test failures - Subject: FAILED: Repository policy check found errors in 668

Re: [Zope-dev] Zope Tests: 10 OK, 4 Failed

2010-04-15 Thread Christian Theune
On 04/15/2010 01:59 PM, Zope Tests Summarizer wrote: > Summary of messages to the zope-tests list. > Period Wed Apr 14 12:00:00 2010 UTC to Thu Apr 15 12:00:00 2010 UTC. > There were 14 messages: 6 from Zope Tests, 7 from ccomb at free.fr, 1 from ct > at gocept.com. > > > Test failures > -

[Zope-dev] Zope Tests: 10 OK, 4 Failed

2010-04-15 Thread Zope Tests Summarizer
Summary of messages to the zope-tests list. Period Wed Apr 14 12:00:00 2010 UTC to Thu Apr 15 12:00:00 2010 UTC. There were 14 messages: 6 from Zope Tests, 7 from ccomb at free.fr, 1 from ct at gocept.com. Test failures - Subject: FAILED: Repository policy check found errors in 669