[Zope-Checkins] SVN: Zope/branches/jim-reintegrate-zope3/lib/python/zope/ Added empty container package.

Jim Fulton jim at zope.com
Mon Oct 24 13:08:50 EDT 2005


Log message for revision 39579:
  Added empty container package.
  

Changed:
  A   Zope/branches/jim-reintegrate-zope3/lib/python/zope/
  A   Zope/branches/jim-reintegrate-zope3/lib/python/zope/__init__.py

-=-
Added: Zope/branches/jim-reintegrate-zope3/lib/python/zope/__init__.py
===================================================================
--- Zope/branches/jim-reintegrate-zope3/lib/python/zope/__init__.py	2005-10-24 17:03:37 UTC (rev 39578)
+++ Zope/branches/jim-reintegrate-zope3/lib/python/zope/__init__.py	2005-10-24 17:08:50 UTC (rev 39579)
@@ -0,0 +1,22 @@
+##############################################################################
+#
+# Copyright (c) 2004 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################
+"""Zope Container Package
+
+This package uses pkgutil so that the package can be split over
+multiple directories.
+
+$Id$
+"""
+from pkgutil import extend_path
+__path__ = extend_path(__path__, __name__)


Property changes on: Zope/branches/jim-reintegrate-zope3/lib/python/zope/__init__.py
___________________________________________________________________
Name: svn:keywords
   + Id
Name: svn:eol-style
   + native



More information about the Zope-Checkins mailing list