aboutsummaryrefslogtreecommitdiffstats
path: root/netlib/h2
Commit message (Collapse)AuthorAgeFilesLines
* Adjust pep8 parameters, reformatAldo Cortesi2015-05-302-25/+110
|
* cleanup importsThomas Kriechbaumer2015-05-291-1/+0
|
* add HTTP/2-capable clientThomas Kriechbaumer2015-05-291-0/+65
|
* 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-272-10/+1
| | | | run the following command: $ autoflake -r -i --remove-all-unused-imports --remove-unused-variables .
* cleanup code with autopep8Thomas Kriechbaumer2015-05-272-25/+39
| | | | run the following command: $ autopep8 -i -r -a -a .
* implement basic HTTP/2 frame classesThomas Kriechbaumer2015-05-263-0/+401