Joel Midstjärna

Results 11 comments of Joel Midstjärna

Hi Could you please clarify your question? Maybe with a code example?

Hi! Change looks fine for me but please run black (https://pypi.org/project/black/) on your updated files and update your branch with the result. Our CI fails unless all files has been...

Sorry for the late response. I'm on vacation and don't have access to a computer. I will check it when I'm back.

> Author The issues on this pull request is due to changed rules in black and pylint. I have fixed this on master branch. Please perform a new pull request...

Hi, The introduction of interpreting unsigned/signed char as an array of numbers instead of utf-8 strings was introduced after suggestion in following issue: https://github.com/midstar/pycstruct/issues/11 I think this is a nice...

Hi, Thank you for your suggestion. It would probably be possible to implement any of these alternatives in a separate file (like annotations.py). You are welcome with a suggestion in...

It would be great if pycstruct had a .h parser that did not depend on castxml. castxml is extremly powerful and builds on a real compiler which supports the complete...

Hi Marcel, StructDef class has the method _element_names() that can be used to get all field names. It is a hidden method (starts with _), but it can be used....

The mix of "bitfield elements" and "other elements" in a struct is sort of hacked into pycstruct. Originally a struct was either without any bitfield members (StructDef) or only bitfield...

That would be great. The current array/list implementation that I made is sort of a hack.