diff options
author | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-05-15 00:33:57 (GMT) |
---|---|---|
committer | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-05-15 00:33:57 (GMT) |
commit | 7663f9e4ffbba27c22698283ebf8891ca5ae2ae5 (patch) | |
tree | e98e3fba9d0c292c4f46930df7920749ce5768ff /Lib/distutils/config.py | |
parent | c92fef9a3ee7481596a18eaff3e12270f4355e2f (diff) | |
download | cpython-7663f9e4ffbba27c22698283ebf8891ca5ae2ae5.zip cpython-7663f9e4ffbba27c22698283ebf8891ca5ae2ae5.tar.gz cpython-7663f9e4ffbba27c22698283ebf8891ca5ae2ae5.tar.bz2 |
Revert distutils changes done in r63248.
As explained by Marc-Andre Lemburg, distutils needs to stay
backward-compatible. Therefore, it should use the old ConfigParser
module name.
Diffstat (limited to 'Lib/distutils/config.py')
-rw-r--r-- | Lib/distutils/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/config.py b/Lib/distutils/config.py index e9ba402..cf54769 100644 --- a/Lib/distutils/config.py +++ b/Lib/distutils/config.py @@ -5,7 +5,7 @@ that uses .pypirc in the distutils.command package. """ import os import sys -from configparser import ConfigParser +from ConfigParser import ConfigParser from distutils.core import Command |