diff options
author | Carl Meyer <carl@oddbird.net> | 2020-04-24 18:19:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-24 18:19:46 (GMT) |
commit | 503de7149d03bdcc671dcbbb5b64f761bb192b4d (patch) | |
tree | 82114dfb3883525435b33c643709136d36745e21 /Lib/test/test___all__.py | |
parent | 24ffe705c30e36c82940d75fd1454256634d0b3c (diff) | |
download | cpython-503de7149d03bdcc671dcbbb5b64f761bb192b4d.zip cpython-503de7149d03bdcc671dcbbb5b64f761bb192b4d.tar.gz cpython-503de7149d03bdcc671dcbbb5b64f761bb192b4d.tar.bz2 |
bpo-40360: Deprecate lib2to3 module in light of PEP 617 (GH-19663)
Deprecate lib2to3 module in light of PEP 617.
We anticipate removal in the 3.12 timeframe.
Diffstat (limited to 'Lib/test/test___all__.py')
-rw-r--r-- | Lib/test/test___all__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test___all__.py b/Lib/test/test___all__.py index c077881..0ba243e 100644 --- a/Lib/test/test___all__.py +++ b/Lib/test/test___all__.py @@ -17,6 +17,7 @@ class AllTest(unittest.TestCase): names = {} with support.check_warnings( (".* (module|package)", DeprecationWarning), + (".* (module|package)", PendingDeprecationWarning), ("", ResourceWarning), quiet=True): try: |