You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Python 3.8 gives the error: TypeError: 'ABCMeta' object is not subscriptable. The effect is that a code base supporting 3.8 cannot use type hints on Mapping. These classes are very central to the function of canopen, so I think we'd miss out on significant type annotation aids if we don't get to use it.
There are a few options available to us:
Bump the minimum Python version to 3.9
Don't use type annotations on any of the Mapping and MutableMapping classes because we need Python 3.8 compatibility
Use a run-time hack that conditionally adds the type annotations. Below example is inspired from this example
Some way to annotate these classes that works with >=3.8 that I don't know about
# Example to annotate MutableMapping that makes it run on Python 3.8importsysifsys.version_info>= (3, 9):
TMutableMapping=MutableMapping[int, Union[RemoteNode, LocalNode]]
else:
TMutableMapping=MutableMappingclassNetwork(TMutableMapping):
"""Representation of one CAN bus containing one or more nodes."""
The text was updated successfully, but these errors were encountered:
I'd avoid jumping to a 3.9 requirement soon. It's very common to work on devices with older distributions when hardware interaction is concerned, so waiting some time until after Python 3.8 has EOLed seems sensible.
Do we really have to introduce a subindexed MutableMapping type here? The results should be very useful already with the generic type - being able to check methods and their signatures at least. And for the other classes, it will get messy trying to list all kinds of possible entry objects. We could just stick with the status quo and revisit once there is a stronger reason (and better time) to bump our Python requirement.
For the type annotations, I absolutely prefer the str | int syntax instead of Union[str, int] for example. But as we're trying hard to be backwards-compatible, we'll just need to live with the older syntax for a while longer.
This is a discussion related to typing, #358.
canopen use
Mapping
andMutableMapping
for 10 classes. Due to limitations in Python 3.8, they cannot be annotated and the following will not workPython 3.8 gives the error:
TypeError: 'ABCMeta' object is not subscriptable
. The effect is that a code base supporting 3.8 cannot use type hints onMapping
. These classes are very central to the function of canopen, so I think we'd miss out on significant type annotation aids if we don't get to use it.There are a few options available to us:
Mapping
andMutableMapping
classes because we need Python 3.8 compatibilityThe text was updated successfully, but these errors were encountered: