Mike Wadsten

Results 6 issues of Mike Wadsten

setup.py runs a regex which assumes LF line endings over the contents of CHANGELOG.rst. When installing pyopenssl from source (`pip install git+...`) on Windows, there's a good chance these files...

RXIPv4Packet defines `needs_id()` as returning True, which means that if `output()` is called (i.e. as part of a step to log a received API frame to a file), the generated...

Using the following code: ```python from suitcase.structure import Structure from suitcase.fields import UBInt8 class Base(Structure): a = UBInt8() b = UBInt8() class Subclass(Base): c = UBInt8() Subclass.from_data(b'\x00') ``` Intuitively I...

Suppose there exists a protocol whose messages are laid out as follows: | Offset | Size (octets) | Description | | --- | --- | --- | | 0 |...

enhancement

I'd like there to be a method on expecters to be able to "drain" any immediately-available data. (And/or to drain through EOF, if there's a way to detect EOF.) My...

enhancement

See #8 for an example of the problems that exist. TODO list: - [ ] Add `runtime.txt` file so that the app can be forced to Python 2.7. (Heroku uses...