Skip to content

Collections.Iterable Update to support Python 3.10#1165

Closed
fengints wants to merge 3 commits into
apache:masterfrom
fengints:master
Closed

Collections.Iterable Update to support Python 3.10#1165
fengints wants to merge 3 commits into
apache:masterfrom
fengints:master

Conversation

@fengints

Copy link
Copy Markdown

Referring to this issue
#1164

Iterable class exists in collections.abc since Python 3.3.
https://docs.python.org/3.3/library/collections.abc.html#collections.abc.Iterable

Replaced all collections.Iterable with collections.abs.Iterable in project except this one, someone made it this way

try:
from collections.abc import Iterable
except ImportError:
from collections import Iterable

Replace Collections with collections.abc for Iterable
@fengints fengints changed the title Update to support Python 3.10 Collections.Iterable Update to support Python 3.10 Apr 28, 2024
@lzjpaul

lzjpaul commented Jul 5, 2026

Copy link
Copy Markdown
Contributor

solved

@lzjpaul lzjpaul closed this Jul 5, 2026
@lzjpaul

lzjpaul commented Jul 5, 2026

Copy link
Copy Markdown
Contributor

solved

@fengints

fengints commented Jul 6, 2026

Copy link
Copy Markdown
Author

@lzjpaul my 2y ago issue(pr), well at least someone took care of it

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.

2 participants