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

Use correct class to indicate present deprecation #8665

Merged
merged 2 commits into from
Sep 22, 2022

Commits on Sep 21, 2022

  1. Use correct class to indicate present deprecation

    `PendingDeprecationWarning` means "we plan to deprecate, but haven't
    yet." A feature that's to be deleted in the next release is not planned
    to be deprecated; it **is** deprecated.
    
    > Base class for warnings about features which are obsolete and expected
    > to be deprecated in the future, but are not deprecated at the moment.
    >
    > This class is rarely used as emitting a warning about a possible
    > upcoming deprecation is unusual, and DeprecationWarning is preferred for
    > already active deprecations.
    
    https://docs.python.org/3/library/exceptions.html#PendingDeprecationWarning
    DavidCain committed Sep 21, 2022
    Configuration menu
    Copy the full SHA
    c98a8f0 View commit details
    Browse the repository at this point in the history

Commits on Sep 22, 2022

  1. Configuration menu
    Copy the full SHA
    d50faca View commit details
    Browse the repository at this point in the history