Andreas

Results 4 comments of Andreas

The `nimbledeps` folder is created in the wrong place. I expected it to be created inside the `test` folder, but instead, it is created in the parent folder. On a...

I would also prefer an implementation based on `WriteFileEx`/`ReadFileEx`, using callbacks. This should be doable under Python, using `ctypes`. This approach also requires threads, but they would be suspended (via...

Hello, I run into the same issue. While transpiling a specification published as PDF to parseable YAML, I had to rewrite 0xFFFF (found verbatim in the PDF specification) to 65535....

This is a dirty patch that I use in my code to let `Int()` also parse hexadecimal encoded integers, such as 0xFF. ```python from strictyaml import Int def validate_hexint(self, chunk):...