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

Access Mapping via collections.abc #99

Merged
merged 3 commits into from
Feb 25, 2019
Merged

Access Mapping via collections.abc #99

merged 3 commits into from
Feb 25, 2019

Commits on Feb 25, 2019

  1. Access Mapping via collections.abc

    The Collections Abstract Base Classes were moved from the `collections`
    module to the `collections.abc` module in Python 3.3. Using them via the
    `collections` module was deprecated in Python 3.7 and will stop working
    in Python 3.8, so the `isinstance` calls in `python-gvm` should be
    adjusted accordingly.
    
    For reference, this the warning shown when running the code in Python
    3.7:
    ```
    DeprecationWarning: Using or importing the ABCs from 'collections'
    instead of from 'collections.abc' is deprecated, and in 3.8 it will stop
    working
    ```
    wiegandm committed Feb 25, 2019
    Configuration menu
    Copy the full SHA
    01b5509 View commit details
    Browse the repository at this point in the history
  2. Add CHANGELOG entry

    wiegandm committed Feb 25, 2019
    Configuration menu
    Copy the full SHA
    73e5d62 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    45aa23a View commit details
    Browse the repository at this point in the history