Skip to content
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

Linux: Extensions - removes abc.Iterable definition #1320

Commits on Oct 24, 2024

  1. Linux: Adds missing abc.Iterable implementation

    `hlist_head` is missing an implementation for
    `collections.abc.Iterable`, resulting in a crash at runtime. This fixes
    the issue by providing the required `__iter__` implementation for
    `hlist_head`.
    dgmcdona committed Oct 24, 2024
    Configuration menu
    Copy the full SHA
    388a3e6 View commit details
    Browse the repository at this point in the history
  2. Removes collections.abc.Iterable superclass

    Per @gcmoreira this is the correct fix vs the one previously proposed,
    since self.vol.member_name cannot be used as the member name to
    iterate this type.
    dgmcdona committed Oct 24, 2024
    Configuration menu
    Copy the full SHA
    4c2d2f9 View commit details
    Browse the repository at this point in the history