Ethan Furman

Results 18 comments of Ethan Furman

I do use these two services to keep up to date with libraries I care about and issues I'm involved with.

It is partially a bug in the dbf code -- it should not be showing the fields marked as `SYSTEM` -- there are 11 such fields. `dbf` is expecting `SYSTEM`...

This looks good. Can you add a couple test cases to make sure the code is doing what it is supposed to?

This is definitely a VFP 9 issue. I'm looking into it.

I'm more than happy to have help crafting a better What's New entry. Keep in mind that the change you are talking about is `format`, not `str` -- `str()` output...

Thanks for the report. Fix merged into main and 3.11.

The change is to `Flag` and `IntFlag`: in plain enums the canonical name is the one seen first for any particular value, and an alias is a different name for...

Compared to an enum, 3.11 now matches 3.10 and earlier: ``` python class Kind(IntEnum): A = 1 B = 2 C = 3 D = 1 dir(Kind) # ['A', 'B',...

This has been fixed, although I can't recall when. Added a test for it in v0.99.001. Thanks for bug report, and my apologies for not getting back to you sooner.