summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_dl.py
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2008-05-10 21:20:19 (GMT)
committerBrett Cannon <bcannon@gmail.com>2008-05-10 21:20:19 (GMT)
commit7f874fce630605027adc4f44e89e84569353216a (patch)
treef0e187f629741876f6de134f9918c66460d37a27 /Lib/test/test_dl.py
parent0aa6e1b8fb8c3ae656518a7e319a5f697158e7bf (diff)
downloadcpython-7f874fce630605027adc4f44e89e84569353216a.zip
cpython-7f874fce630605027adc4f44e89e84569353216a.tar.gz
cpython-7f874fce630605027adc4f44e89e84569353216a.tar.bz2
Deprecate the dl module for removal in 3.0.
Diffstat (limited to 'Lib/test/test_dl.py')
-rwxr-xr-xLib/test/test_dl.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/Lib/test/test_dl.py b/Lib/test/test_dl.py
index a2e4460..c04bc1b 100755
--- a/Lib/test/test_dl.py
+++ b/Lib/test/test_dl.py
@@ -2,9 +2,8 @@
"""Test dlmodule.c
Roger E. Masse revised strategy by Barry Warsaw
"""
-
-import dl
-from test.test_support import verbose,TestSkipped
+from test.test_support import verbose,TestSkipped, import_module
+dl = import_module('dl', deprecated=True)
sharedlibs = [
('/usr/lib/libc.so', 'getpid'),