aboutsummaryrefslogtreecommitdiffstats
path: root/netlib/h2/frame.py
Commit message (Collapse)AuthorAgeFilesLines
* Adjust pep8 parameters, reformatAldo Cortesi2015-05-301-23/+104
|
* cleanup importsThomas Kriechbaumer2015-05-291-1/+0
|
* add generic frame parsing methodThomas Kriechbaumer2015-05-291-0/+17
|
* add hpack to encode and decode headersThomas Kriechbaumer2015-05-291-9/+32
|
* fix default argumentThomas Kriechbaumer2015-05-291-1/+5
| | | | | Python evaluates default args during method definition. So you get the same dict each time you call this method. Therefore the dict is the SAME actual object each time.
* add human_readable() to each frame for debuggingThomas Kriechbaumer2015-05-291-1/+74
|
* cleanup code with autoflakeThomas Kriechbaumer2015-05-271-5/+1
| | | | run the following command: $ autoflake -r -i --remove-all-unused-imports --remove-unused-variables .
* cleanup code with autopep8Thomas Kriechbaumer2015-05-271-10/+24
| | | | run the following command: $ autopep8 -i -r -a -a .
* implement basic HTTP/2 frame classesThomas Kriechbaumer2015-05-261-0/+375