[Zope-Checkins] CVS: Zope27/lib/python/Zope - __init__.py:1.1.2.1
Jim Fulton
jim@zope.com
Tue, 13 Aug 2002 15:33:29 -0400
Update of /cvs-repository/Zope27/lib/python/Zope
In directory cvs.zope.org:/tmp/cvs-serv30914/lib/python/Zope
Added Files:
Tag: Zope-2_7-development-branch
__init__.py
Log Message:
Added some extra needed files
=== Added File Zope27/lib/python/Zope/__init__.py ===
##############################################################################
#
# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.0 (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
#
##############################################################################
def startup():
"""Initialize the Zope Package and provide a published module
"""
from Zope.App2.startup import startup as _startup
_startup()
# We want to make calls after the first noops
global startup
startup = lambda: None