Skip to content

Commit

Permalink
Merge pull request #2632 from dhermes/fix-grpc-rel
Browse files Browse the repository at this point in the history
Using absolute imports in core modules that import grpc.
  • Loading branch information
dhermes authored Oct 27, 2016
2 parents cc505bd + e6c4902 commit 0838d14
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
3 changes: 3 additions & 0 deletions core/google/cloud/_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@
This module is not part of the public API surface.
"""

# Avoid the grpc and google.cloud.grpc collision.
from __future__ import absolute_import

import calendar
import datetime
import json
Expand Down
4 changes: 4 additions & 0 deletions core/google/cloud/_testing.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
"""Shared testing utilities."""


# Avoid the grpc and google.cloud.grpc collision.
from __future__ import absolute_import


class _Monkey(object):
# context-manager for replacing module names in the scope of a test.

Expand Down
3 changes: 3 additions & 0 deletions core/google/cloud/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@
See: https://cloud.google.com/storage/docs/json_api/v1/status-codes
"""

# Avoid the grpc and google.cloud.grpc collision.
from __future__ import absolute_import

import copy
import json
import six
Expand Down

0 comments on commit 0838d14

Please sign in to comment.