aboutsummaryrefslogtreecommitdiffstats
path: root/netlib/http2/protocol.py
Commit message (Collapse)AuthorAgeFilesLines
* fix coding styleThomas Kriechbaumer2015-06-081-2/+4
|
* http2: ditch the logging for nowAldo Cortesi2015-06-061-13/+0
| | | | | The API is well designed: it looks like we can get all the information we need to expose debugging in the caller of the API.
* http2: resolve module structure and circular dependenciesAldo Cortesi2015-06-061-0/+174
- Move implementation out of __init__.py to protocol.py (an anti-pattern because it makes the kind of structural refactoring we need hard) - protocol imports frame, frame does not import protocol. To do this, we shift the default settings to frame. If this feels wrong, we can move them to a separate module (defaults.py?.).