Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Adjust pep8 parameters, reformat | Aldo Cortesi | 2015-05-30 | 1 | -23/+104 |
| | |||||
* | cleanup imports | Thomas Kriechbaumer | 2015-05-29 | 1 | -1/+0 |
| | |||||
* | add generic frame parsing method | Thomas Kriechbaumer | 2015-05-29 | 1 | -0/+17 |
| | |||||
* | add hpack to encode and decode headers | Thomas Kriechbaumer | 2015-05-29 | 1 | -9/+32 |
| | |||||
* | fix default argument | Thomas Kriechbaumer | 2015-05-29 | 1 | -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 debugging | Thomas Kriechbaumer | 2015-05-29 | 1 | -1/+74 |
| | |||||
* | cleanup code with autoflake | Thomas Kriechbaumer | 2015-05-27 | 1 | -5/+1 |
| | | | | run the following command: $ autoflake -r -i --remove-all-unused-imports --remove-unused-variables . | ||||
* | cleanup code with autopep8 | Thomas Kriechbaumer | 2015-05-27 | 1 | -10/+24 |
| | | | | run the following command: $ autopep8 -i -r -a -a . | ||||
* | implement basic HTTP/2 frame classes | Thomas Kriechbaumer | 2015-05-26 | 1 | -0/+375 |