Skip to content

Conversation

@anagri
Copy link

@anagri anagri commented Aug 12, 2023

the code incorrectly imports collections.Iterable, instead of typing.Iterable.

This error is not caught for python 3.9+ because of interpreter changes

But for python 3.8, the code throws error -

$ python mysum.py Traceback (most recent call last): File "mysum.py", line 10, in <module> def sum(it: Iterable[T]) -> Union[T, int]: ... # <2> 
the code incorrectly imports collections.Iterable, instead of typing.Iterable. This error is not caught for python 3.9+ because of interpreter changes But for python 3.8, the code throws error - ``` $ python mysum.py Traceback (most recent call last): File "mysum.py", line 10, in <module> def sum(it: Iterable[T]) -> Union[T, int]: ... # <2> ```
@anagri anagri closed this by deleting the head repository Nov 8, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

1 participant