Re: [Zope-dev] Test fixture concepts

2011-04-20 Thread Martijn Faassen
On 03/27/2011 05:13 PM, Martin Aspeli wrote: On 27 March 2011 15:54, Uli Fouquetu...@gnufix.de wrote: The (limited) experiences with py.test, however, were awesome. Some points that are quite cool IMHO: - Easy finding of tests: just write some ``test_function`` in a ``test_module`` and

Re: [Zope-dev] Test fixture concepts

2011-04-20 Thread Martijn Faassen
On 03/29/2011 02:43 PM, Wichert Akkerman wrote: On 3/29/11 14:40 , Stephan Richter wrote: Yeah, Marius led me recently to that path too. Write a narrative in text files and use doc strings of functions to do edge cases (or when you don't have time for the narrative). I am getting used to

Re: [Zope-dev] Test fixture concepts

2011-04-20 Thread Wichert Akkerman
On 2011-4-20 21:59, Martijn Faassen wrote: On 03/29/2011 02:43 PM, Wichert Akkerman wrote: On 3/29/11 14:40 , Stephan Richter wrote: Yeah, Marius led me recently to that path too. Write a narrative in text files and use doc strings of functions to do edge cases (or when you don't have

Re: [Zope-dev] Test fixture concepts

2011-03-29 Thread Jim Fulton
On Mon, Mar 28, 2011 at 5:27 PM, Martin Aspeli optilude+li...@gmail.com wrote: On 28 March 2011 15:45, Tres Seaver tsea...@palladion.com wrote: The vast majority of the doctest testcases in zope.* packages fall into this category:  poor isolation, lots of edge cases which would obscure any

Re: [Zope-dev] Test fixture concepts

2011-03-29 Thread Stephan Richter
On Tuesday, March 29, 2011, Jim Fulton wrote: so I may forgo them. Which is a mistake. You should create separate tests. I typically put large tests, dealing with main use cases where there is a definite flow of activity in '.test' files. I do these in separate files because they're

Re: [Zope-dev] Test fixture concepts

2011-03-29 Thread Wichert Akkerman
On 3/29/11 14:40 , Stephan Richter wrote: On Tuesday, March 29, 2011, Jim Fulton wrote: so I may forgo them. Which is a mistake. You should create separate tests. I typically put large tests, dealing with main use cases where there is a definite flow of activity in '.test' files. I do

Re: [Zope-dev] Test fixture concepts (was: Zope test layers, pytest, and test isolation)

2011-03-28 Thread Benji York
On Sun, Mar 27, 2011 at 10:54 AM, Uli Fouquet u...@gnufix.de wrote: - `assert` works like you would expect it to work in tests. No need  to use `self.assertEqual()`` and friends (but you can if you prefer). How do they deal with the fact that assert statements are dropped when Python is run

Re: [Zope-dev] Test fixture concepts (was: Zope test layers, pytest, and test isolation)

2011-03-28 Thread Uli Fouquet
Hi there, Benji York wrote: On Sun, Mar 27, 2011 at 10:54 AM, Uli Fouquet u...@gnufix.de wrote: - `assert` works like you would expect it to work in tests. No need to use `self.assertEqual()`` and friends (but you can if you prefer). How do they deal with the fact that assert statements

Re: [Zope-dev] Test fixture concepts (was: Zope test layers, pytest, and test isolation)

2011-03-28 Thread Jim Fulton
On Sun, Mar 27, 2011 at 11:13 AM, Martin Aspeli optilude+li...@gmail.com wrote: Hi, On 27 March 2011 15:54, Uli Fouquet u...@gnufix.de wrote: The (limited) experiences with py.test, however, were awesome. Some points that are quite cool IMHO: - Easy finding of tests: just write some

Re: [Zope-dev] Test fixture concepts (was: Zope test layers, pytest, and test isolation)

2011-03-28 Thread Jim Fulton
On Mon, Mar 28, 2011 at 9:33 AM, Uli Fouquet u...@gnufix.de wrote: Hi there, Benji York wrote: On Sun, Mar 27, 2011 at 10:54 AM, Uli Fouquet u...@gnufix.de wrote: - `assert` works like you would expect it to work in tests. No need  to use `self.assertEqual()`` and friends (but you can if

Re: [Zope-dev] Test fixture concepts

2011-03-28 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 03/28/2011 10:04 AM, Jim Fulton wrote: On Sun, Mar 27, 2011 at 11:13 AM, Martin Aspeli optilude+li...@gmail.com wrote: Hi, On 27 March 2011 15:54, Uli Fouquet u...@gnufix.de wrote: The (limited) experiences with py.test, however, were

Re: [Zope-dev] Test fixture concepts

2011-03-28 Thread Wolfgang Schnerring
Hello, * Martin Aspeli optilude+li...@gmail.com [2011-03-27 16:13]: On 27 March 2011 15:54, Uli Fouquet u...@gnufix.de wrote: The (limited) experiences with py.test, however, were awesome. Some points that are quite cool IMHO: [...] I agree wholeheartedly with what Martin has said about

Re: [Zope-dev] Test fixture concepts

2011-03-28 Thread Wolfgang Schnerring
Hello, * Jim Fulton j...@zope.com [2011-03-28 10:04]: More generally, I'd love to see us adopt another test runner so that we can stop maintianing zope.testrunner. When it was written at the turn of the century, there weren't good alternatives. Personally, I think maintaining it is boring.

Re: [Zope-dev] Test fixture concepts

2011-03-28 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 03/28/2011 10:56 AM, Wolfgang Schnerring wrote: Hello, * Jim Fulton j...@zope.com [2011-03-28 10:04]: More generally, I'd love to see us adopt another test runner so that we can stop maintianing zope.testrunner. When it was written at the

Re: [Zope-dev] Test fixture concepts

2011-03-28 Thread Martin Aspeli
On 28 March 2011 15:45, Tres Seaver tsea...@palladion.com wrote: The vast majority of the doctest testcases in zope.* packages fall into this category:  poor isolation, lots of edge cases which would obscure any real narrative docs, of which there are almost none.  I believe the conflict is

Re: [Zope-dev] Test fixture concepts (was: Zope test layers, pytest, and test isolation)

2011-03-27 Thread Uli Fouquet
Hi there, I first would like to thank everybody very much for the interesting and elaborated answers to my last questions! I learned a lot about registries and think that for now `plone.testing` (which in fact we hadn't had on the screen) will help to solve some of the most urgent issues we have

Re: [Zope-dev] Test fixture concepts (was: Zope test layers, pytest, and test isolation)

2011-03-27 Thread Martin Aspeli
Hi, On 27 March 2011 15:54, Uli Fouquet u...@gnufix.de wrote: The (limited) experiences with py.test, however, were awesome. Some points that are quite cool IMHO: - Easy finding of tests: just write some ``test_function`` in a  ``test_module`` and it will be found and executed. That also

Re: [Zope-dev] Test fixture concepts (was: Zope test layers, pytest, and test isolation)

2011-03-26 Thread Wolfgang Schnerring
Hello, part two. :) * Uli Fouquet u...@gnufix.de [2011-03-24 01:05]: A big advantage of test layers over `pytest` testing scopes might be that you can spread your tests associated to a certain layer over many files/modules/packages as you like and the setup/teardown will nevertheless only be

Re: [Zope-dev] Test fixture concepts (was: Zope test layers, pytest, and test isolation)

2011-03-26 Thread Martin Aspeli
Hi, On 26 March 2011 14:18, Wolfgang Schnerring w...@gocept.com wrote: Because, while test layers are nice because they have the above properties, I'm not too happy with the current implementation, namely the use (or is it abuse? ;-) of __bases__ and __name__, which leads very naturally to

[Zope-dev] Test fixture failure zope.interface under Python 3.1

2010-05-02 Thread Jens Vagelpohl
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi all (and especially Lennart), I need a quick sanity check. Trying to test a package of mine for Python 3 compatibility I built Python 3.1.2 and installed distribute into it. My package depends on zope.interface. I am executing... $ python3.1

Re: [Zope-dev] Test fixture failure zope.interface under Python 3.1

2010-05-02 Thread Lennart Regebro
On Sun, May 2, 2010 at 18:37, Jens Vagelpohl j...@dataflake.org wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi all (and especially Lennart), I need a quick sanity check. Trying to test a package of mine for Python 3 compatibility I built Python 3.1.2 and installed distribute into

Re: [Zope-dev] Test fixture failure zope.interface under Python 3.1

2010-05-02 Thread Jens Vagelpohl
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 5/2/10 21:30 , Lennart Regebro wrote: On Sun, May 2, 2010 at 18:37, Jens Vagelpohl j...@dataflake.org wrote: The issue is a non-ASCII character in the Changelog: snip - - Added support for Python 3.1. Contributors: Lennart Regebro

Re: [Zope-dev] Test fixture failure zope.interface under Python 3.1

2010-05-02 Thread Lennart Regebro
On Sun, May 2, 2010 at 22:35, Jens Vagelpohl j...@dataflake.org wrote: locale.getpreferredencoding() 'UTF-8' on Ubuntu. And I think Windows has something else as well, but then again Hanno was able to release Windows binaries. Strange that it didn't fail there. Tres got rid of some warnings when

[Zope-dev] Test summary missing from yesterday

2010-04-03 Thread Christian Theune
Hi, I'm missing the test summary from yesterday. Could it be that it choked on one of my mails? Christian -- Christian Theune · c...@gocept.com gocept gmbh co. kg · forsterstraße 29 · 06112 halle (saale) · germany http://gocept.com · tel +49 345 1229889 0 · fax +49 345 1229889 1 Zope and

Re: [Zope-dev] Test summary missing from yesterday

2010-04-03 Thread Charlie Clark
Am 03.04.2010, 09:44 Uhr, schrieb Christian Theune c...@gocept.com: I'm missing the test summary from yesterday. Could it be that it choked on one of my mails? I didn't for either zope or the cmf but normal service seems to have been resumed. Charlie -- Charlie Clark Managing Director

Re: [Zope-dev] test setup layer sorting

2009-07-14 Thread Reinout van Rees
On 2009-07-13, Marius Gedminas mar...@gedmin.as wrote: On Mon, Jul 13, 2009 at 12:27:50PM +, Reinout van Rees wrote: I my test files, I had two separate zcml files (one registered a bit more than the other). So I ended up with two separate ZCMLLayer subclasses. And both did some

Re: [Zope-dev] test setup layer sorting

2009-07-14 Thread Reinout van Rees
On 2009-07-13, Marius Gedminas mar...@gedmin.as wrote: zope.testing supports test layers that muck up the global state irrepairably (by letting the layer's tearDown method raise NotImplementedError) and continues running the subsequent test layers in a fresh and squeaky-clean subprocess.

[Zope-dev] test setup layer sorting

2009-07-13 Thread Reinout van Rees
zope/testing/testrunner/runner.py's order_by_bases() function orders layers by inheritance, basically. So if you've got a FunctionalTestLayer that inherits from some BasicTestLayer, the tests that use the basic test layer will be executed before the functional test layer ones. If there's no

Re: [Zope-dev] test setup layer sorting

2009-07-13 Thread Marius Gedminas
On Mon, Jul 13, 2009 at 09:27:54AM +, Reinout van Rees wrote: zope/testing/testrunner/runner.py's order_by_bases() function orders layers by inheritance, basically. So if you've got a FunctionalTestLayer that inherits from some BasicTestLayer, the tests that use the basic test layer will

Re: [Zope-dev] test setup layer sorting

2009-07-13 Thread Reinout van Rees
On 2009-07-13, Marius Gedminas mar...@gedmin.as wrote: Whatever grok does that interferes with coverage should be fixed. I did some more debugging. In the end it boils down to this: With z3c.testsetup, you can specify a zcml file at the top of your test file. z3c.testsetup creates a ZCMLLayer

Re: [Zope-dev] test setup layer sorting

2009-07-13 Thread Benji York
On Mon, Jul 13, 2009 at 5:55 AM, Marius Gedminasmar...@gedmin.as wrote: Personally I would much prefer for the unit test layer to be sorted first.  It is already treated specially by zope.testing; I see no harm in hardcoding its sort order. +1 -- Benji York Senior Software Engineer Zope

Re: [Zope-dev] test setup layer sorting

2009-07-13 Thread Marius Gedminas
On Mon, Jul 13, 2009 at 12:27:50PM +, Reinout van Rees wrote: On 2009-07-13, Marius Gedminas mar...@gedmin.as wrote: Whatever grok does that interferes with coverage should be fixed. I did some more debugging. In the end it boils down to this: With z3c.testsetup, you can specify a

Re: [Zope-dev] test setup layer sorting

2009-07-13 Thread Fred Drake
On Mon, Jul 13, 2009 at 3:36 PM, Marius Gedminasmar...@gedmin.as wrote: Fortunately, the NotImplementedError in ZCMLLayer's tearDown is just a precaution, 99% of the time it is sufficient to run CleanUp.tearDown to get the global state restored to its pristine condition. Keep in mind that a

Re: [Zope-dev] Test failure in zope.traversing 3.7.0

2009-05-27 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Tres Seaver wrote: Andreas Jung wrote: I get the following failure while running the Zope 2.12 tests: aj...@suxmac2:~/sandboxes/Zope-2.12/2.12 bin/alltests Test-module import failures: Module: zope.traversing.tests.test_vhosting

[Zope-dev] Test failure in zope.traversing 3.7.0

2009-05-26 Thread Andreas Jung
I get the following failure while running the Zope 2.12 tests: aj...@suxmac2:~/sandboxes/Zope-2.12/2.12 bin/alltests Test-module import failures: Module: zope.traversing.tests.test_vhosting Traceback (most recent call last): File

Re: [Zope-dev] Test failure in zope.traversing 3.7.0

2009-05-26 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Andreas Jung wrote: I get the following failure while running the Zope 2.12 tests: aj...@suxmac2:~/sandboxes/Zope-2.12/2.12 bin/alltests Test-module import failures: Module: zope.traversing.tests.test_vhosting Traceback (most

Re: [Zope-dev] Test Runner (was Re: Dependencies and future of zope 3)

2008-09-04 Thread Martijn Faassen
Hi there, On Thu, Sep 4, 2008 at 4:29 PM, Jim Fulton [EMAIL PROTECTED] wrote: [snip] I discovered today I think the time is ripe for a blank buffer rewrite of the testrunner: it is so full of twisty passages that my confidence in its own internal correctness is seriously depleted. It has

Re: [Zope-dev] Test Runner (was Re: Dependencies and future of zope 3)

2008-09-04 Thread Christian Theune
On Thu, 2008-09-04 at 16:33 +0200, Martijn Faassen wrote: Note also that Christian Theune also started a major cleanup/reorganization of the testrunner some months ago. Christian can tell you more about the status and future plans for further cleanups. The code became more readable in many

Re: [Zope-dev] Test runner: layers, subprocesses, and tear down

2008-07-13 Thread Dieter Maurer
Benji York wrote at 2008-7-3 17:44 -0400: On Thu, Jul 3, 2008 at 5:37 PM, Christian Theune [EMAIL PROTECTED] wrote: On Thu, 2008-07-03 at 17:22 -0400, Benji York wrote: I'd like to 1) remove the layer tear-down mechanism entirely, and 2) make (almost) all layers run in a subprocess. You are

Re: [Zope-dev] Test runner: layers, subprocesses, and tear down

2008-07-05 Thread Christian Theune
Hi, On Thu, 2008-07-03 at 17:22 -0400, Benji York wrote: I'm working on making the zope.testing test runner run tests in parallelized subprocesses. The option will likely be spelled -j N, where N is the maximum number of processes. Getting back to the idea about parallelizing on a per-test

Re: [Zope-dev] Test runner: layers, subprocesses, and tear down

2008-07-05 Thread Christian Theune
On Sat, 2008-07-05 at 09:18 +0200, Christian Theune wrote: Hi, On Thu, 2008-07-03 at 17:22 -0400, Benji York wrote: I'm working on making the zope.testing test runner run tests in parallelized subprocesses. The option will likely be spelled -j N, where N is the maximum number of

Re: [Zope-dev] Test runner: layers, subprocesses, and tear down

2008-07-05 Thread Benji York
On Sat, Jul 5, 2008 at 3:18 AM, Christian Theune [EMAIL PROTECTED] wrote: We could use layers as a hint to create subprocesses, but should split up layers if they are too large to fit the X/N rule (maybe with a margin of a few percent to avoid splits for single or few tests). It probably

Re: [Zope-dev] Test runner: layers, subprocesses, and tear down

2008-07-04 Thread Adam GROSZER
Hello Benji, +1 for keeping the default as no subprocess and keeping the teardown. The others already said the reasons. -- Best regards, Adam GROSZERmailto:[EMAIL PROTECTED] -- Quote of the day: It is a great mistake to suppose that God is only, or even chiefly,

Re: [Zope-dev] Test runner: layers, subprocesses, and tear down

2008-07-04 Thread Chris Withers
Hi Benji, I've read the whole thread to date but thought I'd reply here... Benji York wrote: I'm working on making the zope.testing test runner run tests in parallelized subprocesses. The option will likely be spelled -j N, where N is the maximum number of processes. Cool :-) But please

[Zope-dev] Test runner: layers, subprocesses, and tear down

2008-07-03 Thread Benji York
I'm working on making the zope.testing test runner run tests in parallelized subprocesses. The option will likely be spelled -j N, where N is the maximum number of processes. I have it basically working, but have noticed a couple odd corners of the test runner that I'd like to clean up. They

Re: [Zope-dev] Test runner: layers, subprocesses, and tear down

2008-07-03 Thread Christian Theune
On Thu, 2008-07-03 at 17:22 -0400, Benji York wrote: I'm working on making the zope.testing test runner run tests in parallelized subprocesses. The option will likely be spelled -j N, where N is the maximum number of processes. I have it basically working, but have noticed a couple odd

AW: [Zope-dev] Test runner: layers, subprocesses, and tear down

2008-07-03 Thread Roger Ineichen
Hi Benji Betreff: [Zope-dev] Test runner: layers, subprocesses, and tear down [... ] #2 will add some process start-up overhead, but it'll only be one more process than is already started (and any reasonably-sized test corpus already starts several processes for each test run). The one

Re: [Zope-dev] Test runner: layers, subprocesses, and tear down

2008-07-03 Thread Benji York
On Thu, Jul 3, 2008 at 5:37 PM, Christian Theune [EMAIL PROTECTED] wrote: On Thu, 2008-07-03 at 17:22 -0400, Benji York wrote: I'd like to 1) remove the layer tear-down mechanism entirely, and 2) make (almost) all layers run in a subprocess. I want to do #1 because it would simplify the test

Re: [Zope-dev] Test runner: layers, subprocesses, and tear down

2008-07-03 Thread Marius Gedminas
On Thu, Jul 03, 2008 at 05:22:11PM -0400, Benji York wrote: I'm working on making the zope.testing test runner run tests in parallelized subprocesses. The option will likely be spelled -j N, where N is the maximum number of processes. That's wonderful news! I have it basically working, but

[Zope-dev] Test failure in zope.component on 2.10 branch

2008-04-28 Thread Paul Winkler
Does anybody else see this on a fresh checkout of the zope 2.10 branch? I think it's pretty new; I had a checkout last week where I didn't get any test failures. [EMAIL PROTECTED] ~/tmp/z2branches/2.10 $ python test.py -s zope.component Running tests at level 1 Running unit tests: Running:

[Zope-dev] Test isolation problems starting with zope.app.publisher 3.5.0a3

2008-03-13 Thread Christian Zagrodnick
Hi, starting with zope.app.publisher 3.5.0a3 I geht isolation problems with tests. When the second functional test layer is reached the menus are empty. I don't know why this is but I'm pretty sure ist has todo with the checkin below. On 2007-11-27 20:59:01 +0100, Juergen Kartnaller

[Zope-dev] Test failure on integration-branch for Zope 2.11

2007-03-08 Thread Christian Theune
Hi, I've started working on the integration of Zope 3.4 and ZODB 3.8 into Zope 2.11. I have a breaking test on ZClasses that I couldn't understand. I'd appreciate any help. The error is a max. recursion of an object that tries to load its state and something goes off. Here's a part of the

[Zope-dev] Test Failures

2005-12-16 Thread Sidnei da Silva
I've seen the following tests fail today, after updating Zope 2.8 branch for all variants of BTrees: == ERROR: testUpdateFromPersistentMapping (BTrees.tests.testBTrees.IIBucketTest)

Re: [Zope-dev] Test failures with five-integration branch merged to head...

2005-03-31 Thread Martijn Faassen
Brian Lloyd wrote: I did a merge from the five-integration branch to the head in a local sandbox, and got the following test failures - anyone know anything about them? Odd, I don't get any failures, and Stefan Holek cannot report them either. Did these get resolved since then? It looks like

Re: [Zope-dev] Test failures with five-integration branch merged to head...

2005-03-31 Thread Tim Peters
[Brian Lloyd] I did a merge from the five-integration branch to the head in a local sandbox, and got the following test failures - anyone know anything about them? [Martijn Faassen] Odd, I don't get any failures, and Stefan Holek cannot report them either. Did these get resolved since then?

RE: [Zope-dev] Test failures with five-integration branch merged to head...

2005-03-31 Thread Brian Lloyd
[Martijn Faassen] Odd, I don't get any failures, and Stefan Holek cannot report them either. Did these get resolved since then? It looks like the merge got checked in, right? The merge was checked in. I'm doing the ZODB 3.4 integration on a new branch. We suspect Brian's failures

[Zope-dev] Test failures with five-integration branch merged to head...

2005-03-30 Thread Brian Lloyd
I did a merge from the five-integration branch to the head in a local sandbox, and got the following test failures - anyone know anything about them? Brian Lloyd[EMAIL PROTECTED] V.P. Engineering 540.361.1716 Zope Corporation http://www.zope.com Running unit tests

[Zope-dev] test: ignore

2004-06-24 Thread Andrew Sawyers
test -- Zope Corporation Software Engineer (540) 361-1700 ___ Zope-Dev maillist - [EMAIL PROTECTED] http://mail.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists -

[Zope-dev] test

2001-02-04 Thread Robin Becker
are we here in mail.zope.org -- Robin Becker ___ Zope-Dev maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce

[Zope-dev] test, please ignore

2001-02-02 Thread Michael Bernstein
test ___ Zope-Dev maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce

Re: [Zope-dev] test, please ignore

2001-02-02 Thread Andy McKay
My golly are we back up? -- Andy McKay. - Original Message - From: "Michael Bernstein" [EMAIL PROTECTED] To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Friday, February 02, 2001 8:06 AM Subject: [Zope-dev] test, please igno

Re: [Zope-dev] Test request: ZSession - ZPatterns based session manager

2000-06-20 Thread Phillip J. Eby
At 08:58 PM 6/19/00 +0800, mike wrote: http://www.zope.org/Members/RainDog/ZSession/ZSession-0.0.2.tar.gz/view Comments? Now that I've had a chance to really look at this (while tracking down one of the bugs you found), I do have a few comments. First, nice job... It's a good adaptation use

Re: [Zope-dev] Test request: ZSession - ZPatterns basedsession manager

2000-06-20 Thread mike
"Phillip J. Eby" wrote: At 08:58 PM 6/19/00 +0800, mike wrote: http://www.zope.org/Members/RainDog/ZSession/ZSession-0.0.2.tar.gz/view Comments? Now that I've had a chance to really look at this (while tracking down one of the bugs you found), I do have a few comments. First,

Re: [Zope-dev] Test request: ZSession - ZPatterns basedsession manager

2000-06-20 Thread Phillip J. Eby
At 10:51 PM 6/20/00 +0800, mike wrote: "Phillip J. Eby" wrote: example. Think of someone creating a Session subclass called "Shopping Cart", with methods for viewing, checking out, adding/deleting items, etc. Or, if they have many subsystems which want to share the same Session objects, they

[Zope-dev] Test request: ZSession - ZPatterns based session manager

2000-06-19 Thread mike
http://www.zope.org/Members/RainDog/ZSession/ZSession-0.0.2.tar.gz/view Comments? Mike ___ Zope-Dev maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists -