diff options
author | Georg Brandl <georg@python.org> | 2008-05-26 11:14:17 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-05-26 11:14:17 +0000 |
commit | 38eceaaf0c207709cfbb44c7a1b9715699622848 (patch) | |
tree | 874f496e0fbaf8e6f3c86e86cd0c95fe51845dde /Lib/test/test_xmlrpc_net.py | |
parent | 7f986acb0142574d30e5c5460df02fdbb00760e9 (diff) | |
download | cpython-git-38eceaaf0c207709cfbb44c7a1b9715699622848.tar.gz |
Create xmlrpc package. Issue #2886.
Diffstat (limited to 'Lib/test/test_xmlrpc_net.py')
-rw-r--r-- | Lib/test/test_xmlrpc_net.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_xmlrpc_net.py b/Lib/test/test_xmlrpc_net.py index 1f8dd5d1e5..25252546d2 100644 --- a/Lib/test/test_xmlrpc_net.py +++ b/Lib/test/test_xmlrpc_net.py @@ -6,7 +6,7 @@ import sys import unittest from test import support -import xmlrpclib +import xmlrpclib.client as xmlrpclib class CurrentTimeTest(unittest.TestCase): |