This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author veky
Recipients David Rebbe2, veky
Date 2021-08-24.17:30:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1629826202.91.0.201919934466.issue44993@roundup.psfhosted.org>
In-reply-to
Content
Honestly, I think it's backwards. Either they _do_ matter because of some external factor (you mention network interoperability, though I'd like you to clarify... what exactly did you send over the network?), or they don't matter (if done right, you shouldn't even _notice_ that they start at 1 --- unless you test their truth value, which was the reason for the original departure from the usual practice in the first place).

You mention indexing... I _hope_ you're not using IntEnums for indexing tuples (or lists). :-o In such a scenario, you're really much better off cutting the middleman and using objects with attributes directly (an interesting insight: due to the way most objects in Python are implemented, you _still_ have the middlemen integers in the process -- only they are called "hash values" and they _truly_ don't matter:).
History
Date User Action Args
2021-08-24 17:30:02vekysetrecipients: + veky, David Rebbe2
2021-08-24 17:30:02vekysetmessageid: <1629826202.91.0.201919934466.issue44993@roundup.psfhosted.org>
2021-08-24 17:30:02vekylinkissue44993 messages
2021-08-24 17:30:02vekycreate