diff options
| author | Brett Cannon <bcannon@gmail.com> | 2008-05-11 03:01:47 (GMT) |
|---|---|---|
| committer | Brett Cannon <bcannon@gmail.com> | 2008-05-11 03:01:47 (GMT) |
| commit | 2a869138645a38bea2517d00133158567a39caaf (patch) | |
| tree | cdc57e48e8ee47317ba88da5e4c553b754b2ccac /Lib/test/test_mhlib.py | |
| parent | 79964cf64f8779a2eda9f7573388b1d086bda6eb (diff) | |
| download | cpython-2a869138645a38bea2517d00133158567a39caaf.zip cpython-2a869138645a38bea2517d00133158567a39caaf.tar.gz cpython-2a869138645a38bea2517d00133158567a39caaf.tar.bz2 | |
Deprecated the mhlib module for removal in 3.0.
Diffstat (limited to 'Lib/test/test_mhlib.py')
| -rw-r--r-- | Lib/test/test_mhlib.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_mhlib.py b/Lib/test/test_mhlib.py index a6dc00a..04571ea 100644 --- a/Lib/test/test_mhlib.py +++ b/Lib/test/test_mhlib.py @@ -7,10 +7,10 @@ ### mhlib. It should. import unittest -from test.test_support import run_unittest, TESTFN, TestSkipped +from test.test_support import run_unittest, TESTFN, TestSkipped, import_module import os, StringIO import sys -import mhlib +mhlib = import_module('mhlib', deprecated=True) if (sys.platform.startswith("win") or sys.platform=="riscos" or sys.platform.startswith("atheos")): |
