~vcs-imports/zope.app.testing/trunk

« back to all changes in this revision

Viewing changes to src/zope/__init__.py

  • Committer: srichter
  • Date: 2013-03-12 13:35:37 UTC
  • Revision ID: srichter-20130312133537-qjj13sokp2pn26a9
Moved to GitHub.

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__)