Skipping tests in Python3
diff --git a/tests/test_discovery.py b/tests/test_discovery.py
index 458e29d..e2677b0 100644
--- a/tests/test_discovery.py
+++ b/tests/test_discovery.py
@@ -568,6 +568,7 @@
     q = parse_qs(parsed[4])
     self.assertEqual(q['max-results'], ['5'])
 
+  @unittest.skipIf(six.PY3, 'print is not a reserved name in Python 3')
   def test_methods_with_reserved_names(self):
     self.http = HttpMock(datafile('zoo.json'), {'status': '200'})
     zoo = build('zoo', 'v1', http=self.http)