mirror of https://github.com/grpc/grpc.git
Merge pull request #25183 from jtattermusch/upport_v1_35_x
Merge changes from v1.35.x branch into masterpull/25190/head
commit
1e31d6677c
29 changed files with 1332 additions and 90 deletions
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1 +1 @@ |
||||
Subproject commit fde7cf7358ec7cd69e8db9be4f1fa6a5c431386a |
||||
Subproject commit 19fb89416f3fdc2d6668f3738f444885575285bc |
@ -0,0 +1,14 @@ |
||||
diff --git a/python/google/protobuf/__init__.py b/python/google/protobuf/__init__.py
|
||||
index 97ac28028..8b7585d9d 100644
|
||||
--- 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.14.0'
|
||||
+
|
||||
+if __name__ != '__main__':
|
||||
+ try:
|
||||
+ __import__('pkg_resources').declare_namespace(__name__)
|
||||
+ except ImportError:
|
||||
+ __path__ = __import__('pkgutil').extend_path(__path__, __name__)
|
File diff suppressed because one or more lines are too long
Loading…
Reference in new issue