Skip to content
This repository was archived by the owner on Jan 13, 2021. It is now read-only.

Use HTTPS for quickstart example. #287

Merged
merged 1 commit into from
Sep 28, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/source/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ the response from any of them, and switch between them using their stream IDs.
For example::

>>> from hyper import HTTPConnection
>>> c = HTTPConnection('http2bin.org')
>>> c = HTTPConnection('http2bin.org', port=443)
>>> first = c.request('GET', '/get', headers={'key': 'value'})
>>> second = c.request('POST', '/post', body=b'hello')
>>> third = c.request('GET', '/ip')
Expand Down