[Zope-dev] Zope Tests: 5 OK

2007-04-13 Thread Zope Tests Summarizer
Summary of messages to the zope-tests list. Period Thu Apr 12 12:00:00 2007 UTC to Fri Apr 13 12:00:00 2007 UTC. There were 5 messages: 5 from Zope Unit Tests. Tests passed OK --- Subject: OK : Zope-2.7 Python-2.3.6 : Linux From: Zope Unit Tests Date: Thu Apr 12 20:49:58 EDT 2007

[Zope-dev] egg issues: adding namespace boilerplate Products / patching testrunner

2007-04-13 Thread whit
2 items: 1. how does everyone feel about adding the following boilerplate to all occurences of Products/__init__.py to enable the easy creation of Product eggs? try: __import__('pkg_resources').declare_namespace(__name__) except ImportError: from pkgutil import extend_path

Re: [Zope-dev] egg issues: adding namespace boilerplate Products / patching testrunner

2007-04-13 Thread Dieter Maurer
whit wrote at 2007-4-13 10:43 -0500: 2 items: 1. how does everyone feel about adding the following boilerplate to all occurences of Products/__init__.py to enable the easy creation of Product eggs? try: __import__('pkg_resources').declare_namespace(__name__) except ImportError: from