~ubuntu-branches/ubuntu/precise/zope.proxy/precise

« back to all changes in this revision

Viewing changes to src/zope/__init__.py

  • Committer: Gediminas Paulauskas
  • Date: 2010-08-26 17:29:11 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: menesis@pov.lt-20100826172911-tzoei4ib9et88t5c
Tags: 3.6.1-0ubuntu1
* New upstream release.
* Don't include C source in the package.
* debian/copyright: update, convert to dep5 format.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# namespace package boilerplate
2
 
try:
3
 
    __import__('pkg_resources').declare_namespace(__name__)
4
 
except ImportError, e:
5
 
    from pkgutil import extend_path
6
 
    __path__ = extend_path(__path__, __name__)
7
 
 
 
1
__import__('pkg_resources').declare_namespace(__name__)