Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: googleapis/google-cloud-python
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 26ac88bcaaf7d40e5cd309dfa1a8e54084c68384
Choose a base ref
..
head repository: googleapis/google-cloud-python
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d53906ee2fa01414d4d31f2de8b9bcf4b0d23273
Choose a head ref
Showing with 4 additions and 1 deletion.
  1. +4 −1 gcloud/storage/test_api.py
5 changes: 4 additions & 1 deletion gcloud/storage/test_api.py
Original file line number Diff line number Diff line change
@@ -13,7 +13,10 @@
# limitations under the License.

import unittest2
import urlparse
try:
import urlparse
except ImportError:
from urllib.parse import urlparse


class Test_lookup_bucket(unittest2.TestCase):