~ubuntu-branches/ubuntu/trusty/zope.app.form/trusty

« back to all changes in this revision

Viewing changes to src/zope/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Gediminas Paulauskas
  • Date: 2010-12-02 01:37:03 UTC
  • Revision ID: james.westby@ubuntu.com-20101202013703-fvbpiae1ok9v73we
Tags: upstream-4.0.2
ImportĀ upstreamĀ versionĀ 4.0.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# this is a namespace package
 
2
try:
 
3
    import pkg_resources
 
4
    pkg_resources.declare_namespace(__name__)
 
5
except ImportError:
 
6
    import pkgutil
 
7
    __path__ = pkgutil.extend_path(__path__, __name__)