Lines Matching +full:pypy +full:- +full:c
56 http.request("http://random-domain:81/", connection_type=tests.MockHTTPConnection)
58 assert tuple(http.connections) == ("http:random-domain:81",)
138 c = httplib2.HTTPSConnectionWithTimeout("localhost", 80, timeout=47)
139 assert 47 == c.timeout
156 for c in http.connections.values():
157 assert c.sock is not None
166 response = {"content-type": "application/atom+xml", "te": "deflate"}
168 assert "content-type" in end2end
174 "connection": "content-type",
175 "content-type": "application/atom+xml",
179 assert "content-type" not in end2end
189 response = {"connection": "content-type"}
195 os.environ.get("TRAVIS_PYTHON_VERSION") in ("2.7", "pypy"),
196 reason="FIXME: fail on Travis py27 and pypy, works elsewhere",
218 conn = conn_type("no-such-hostname.", 80)