summaryrefslogtreecommitdiffstats
path: root/Lib/test/test___all__.py
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2007-01-13 00:29:49 (GMT)
committerBrett Cannon <bcannon@gmail.com>2007-01-13 00:29:49 (GMT)
commit093b67061ac54b603483fed1038d686b34cc61f5 (patch)
tree924e09dbbdc388bfb9c89acfafa6f1760e96337f /Lib/test/test___all__.py
parent6fd4549bc68642ad638f384f760d06295d4e3579 (diff)
downloadcpython-093b67061ac54b603483fed1038d686b34cc61f5.zip
cpython-093b67061ac54b603483fed1038d686b34cc61f5.tar.gz
cpython-093b67061ac54b603483fed1038d686b34cc61f5.tar.bz2
Deprecate the sets module.
Diffstat (limited to 'Lib/test/test___all__.py')
-rw-r--r--Lib/test/test___all__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test___all__.py b/Lib/test/test___all__.py
index c45e139..dbc6bc3 100644
--- a/Lib/test/test___all__.py
+++ b/Lib/test/test___all__.py
@@ -9,6 +9,8 @@ warnings.filterwarnings("ignore",
"the gopherlib module is deprecated",
DeprecationWarning,
"<string>")
+warnings.filterwarnings("ignore", "the sets module is deprecated",
+ DeprecationWarning, "<string>")
class AllTest(unittest.TestCase):