diff options
author | Brett Cannon <brett@python.org> | 2022-04-21 19:28:34 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-21 19:28:34 -0700 |
commit | 2551a6c92f247eed8121b14f151acd95432dff9e (patch) | |
tree | e577a3c06b055b3389f03e44c0020f5ab811a782 /Lib/test | |
parent | 29afb7d2efed6ee48a67dafdc1a1f34dd60153cf (diff) | |
download | cpython-git-2551a6c92f247eed8121b14f151acd95432dff9e.tar.gz |
gh-91217: deprecate-pipes (GH-91779)
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_pipes.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/test/test_pipes.py b/Lib/test/test_pipes.py index 6335e7cbe0..09e21153ec 100644 --- a/Lib/test/test_pipes.py +++ b/Lib/test/test_pipes.py @@ -1,10 +1,12 @@ -import pipes import os import string import unittest import shutil from test.support import reap_children, unix_shell from test.support.os_helper import TESTFN, unlink +from test.support.warnings_helper import import_deprecated + +pipes = import_deprecated("pipes") if os.name != 'posix': |