message: Fix IntEnum tag usage#56
Conversation
IntEnum were being converted to strings in `fix_tag` which caused issues when sourcing FIX tags from an IntEnum.
|
Thanks for the PR! This is a good one. I tested out the scenario, and I couldn't reproduce the issue. So I added a test case and pushed it (see commit 4aa0e72) and the CI picked up that it works in 3.11 but not earlier releases. I'm looking at this in some more detail. |
|
Hi, It seems like enum behavior has indeed changed in Python 3.11+: https://mail.python.org/archives/list/python-dev@python.org/message/RN3WCRZSTQR55DOHJTZ2KIO6CZPJPCU7/ I just fixed a namespace error in my pull request. |
|
Rather than the explicit check for IntEnum type, I think it might be better to check for the ability to convert to an integer, like: The performance is more-or-less the same, and it will hopefully support anything else that comes along that can support the What do you think? If that's ok for you, could you make that change, and I'll merge it. |
|
That would be indeed much better! I just committed the updated version to the branch, you'll likely want to squash my commits when merging. |
|
Thanks again for this -- much appreciated! |
|
Thank you! |
IntEnum were being converted to strings in
fix_tagwhich caused issues when sourcing FIX tags from an IntEnum.