-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Import Mapping and Sequence from compat in python_api::approx
Related to #3339 Fixes a DeprecationWarning on Python 3.7 Adds Mapping to compat
- Loading branch information
Showing
4 changed files
with
9 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Import ``Mapping`` and ``Sequence`` from ``_pytest.compat`` instead of directly | ||
from ``collections`` in ``python_api::approx``. Add ``Mapping`` to | ||
``_pytest.compat``, import it from ``collections`` on python 2, but from | ||
``collections.abc`` on Python 3 to avoid a ``DeprecationWaringin`` on | ||
Python 3.7 or newer. |