aboutsummaryrefslogtreecommitdiffhomepage
path: root/python/google/protobuf/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/google/protobuf/__init__.py')
-rwxr-xr-xpython/google/protobuf/__init__.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/python/google/protobuf/__init__.py b/python/google/protobuf/__init__.py
index 533821c1..5d244191 100755
--- a/python/google/protobuf/__init__.py
+++ b/python/google/protobuf/__init__.py
@@ -31,3 +31,9 @@
# Copyright 2007 Google Inc. All Rights Reserved.
__version__ = '3.0.0b2'
+
+if __name__ != '__main__':
+ try:
+ __import__('pkg_resources').declare_namespace(__name__)
+ except ImportError:
+ __path__ = __import__('pkgutil').extend_path(__path__, __name__)