* :mod:`nis`
* :mod:`nntplib`
* :mod:`ossaudiodev`
+ * :mod:`pipes`
(Contributed by Brett Cannon in :issue:`47061`.)
import re
import os
import tempfile
+import warnings
# we import the quote function rather than the module for backward compat
# (quote used to be an undocumented but used function in pipes)
from shlex import quote
+warnings._deprecated(__name__, remove=(3, 13))
+
__all__ = ["Template"]
# Conversion step kinds
-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':
--- /dev/null
+Deprecate the 'pipes' module.