Skip to content

mysum.py - incorrect import of type Iterable from collections package #38

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed

mysum.py - incorrect import of type Iterable from collections package #38

wants to merge 1 commit into from

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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant