~ubuntu-branches/ubuntu/precise/z3c.pt/precise

« back to all changes in this revision

Viewing changes to src/z3c/__init__.py

  • Committer: Package Import Robot
  • Author(s): Gediminas Paulauskas
  • Date: 2012-02-03 16:03:32 UTC
  • Revision ID: package-import@ubuntu.com-20120203160332-y8iyshk0u8rn4w37
Tags: upstream-2.1.5
ImportĀ upstreamĀ versionĀ 2.1.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# See http://peak.telecommunity.com/DevCenter/setuptools#namespace-packages
 
2
try:
 
3
    __import__('pkg_resources').declare_namespace(__name__)
 
4
except ImportError:
 
5
    from pkgutil import extend_path
 
6
    __path__ = extend_path(__path__, __name__)