diff options
author | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-05-14 22:44:22 +0000 |
---|---|---|
committer | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-05-14 22:44:22 +0000 |
commit | e2514c6f1089ab1cdfba6ddc1dbaed1d37dd2be8 (patch) | |
tree | 1f0356149ed33a4bcca694f4f16b6f55c42126a6 /Lib/distutils/command/upload.py | |
parent | 0a11f96f673dc6f3a7d43d58c249e1d183b1891c (diff) | |
download | cpython-git-e2514c6f1089ab1cdfba6ddc1dbaed1d37dd2be8.tar.gz |
Updated import statements to use the new `configparser` module name.
Updated the documentation to use the new name.
Revert addition of the stub entry for the old name.
Georg, I am reverting your changes since this commit should propagate
to py3k.
Diffstat (limited to 'Lib/distutils/command/upload.py')
-rw-r--r-- | Lib/distutils/command/upload.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/upload.py b/Lib/distutils/command/upload.py index daf681128d..ecc06f05ec 100644 --- a/Lib/distutils/command/upload.py +++ b/Lib/distutils/command/upload.py @@ -10,7 +10,7 @@ from hashlib import md5 import os import socket import platform -import ConfigParser +import configparser import httplib import base64 import urlparse |