Skip to content

cine.py broken by python 3.9+ #402

@leonavery

Description

@leonavery

In python 3.9+, Iterable can no longer be imported directly from collections. It has been moved to collections.abc. Thus this line:

 from collections import Iterable

in cine.py is broken. It needs to be

from collections.abc import Iterable

presumably conditional on the python version.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions