summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2003-03-12 13:47:39 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2003-03-12 13:47:39 (GMT)
commitb1fbf855a37edb75c4438f773f8f2b9c7cf1cf4a (patch)
treed04e32f32aeb3384610d29c5e52fa42e0443f7e5 /Lib/test
parent60de2e837fbbc14f68fca544e5c3288f5ba53c73 (diff)
downloadcpython-b1fbf855a37edb75c4438f773f8f2b9c7cf1cf4a.zip
cpython-b1fbf855a37edb75c4438f773f8f2b9c7cf1cf4a.tar.gz
cpython-b1fbf855a37edb75c4438f773f8f2b9c7cf1cf4a.tar.bz2
Filter out the depracation warning for macfs.
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_macfs.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_macfs.py b/Lib/test/test_macfs.py
index d02d9e1..f6b72ee 100644
--- a/Lib/test/test_macfs.py
+++ b/Lib/test/test_macfs.py
@@ -1,6 +1,8 @@
# Copyright (C) 2003 Python Software Foundation
import unittest
+import warnings
+warnings.filterwarnings("ignore", "macfs.*", DeprecationWarning, __name__)
import macfs
import os
import tempfile