summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/configHandler.py
diff options
context:
space:
mode:
authorAlexandre Vassalotti <alexandre@peadrop.com>2008-05-14 22:44:22 (GMT)
committerAlexandre Vassalotti <alexandre@peadrop.com>2008-05-14 22:44:22 (GMT)
commite2514c6f1089ab1cdfba6ddc1dbaed1d37dd2be8 (patch)
tree1f0356149ed33a4bcca694f4f16b6f55c42126a6 /Lib/idlelib/configHandler.py
parent0a11f96f673dc6f3a7d43d58c249e1d183b1891c (diff)
downloadcpython-e2514c6f1089ab1cdfba6ddc1dbaed1d37dd2be8.zip
cpython-e2514c6f1089ab1cdfba6ddc1dbaed1d37dd2be8.tar.gz
cpython-e2514c6f1089ab1cdfba6ddc1dbaed1d37dd2be8.tar.bz2
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/idlelib/configHandler.py')
-rw-r--r--Lib/idlelib/configHandler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/configHandler.py b/Lib/idlelib/configHandler.py
index 3fc2a60..bdce85d 100644
--- a/Lib/idlelib/configHandler.py
+++ b/Lib/idlelib/configHandler.py
@@ -21,7 +21,7 @@ import os
import sys
import string
import macosxSupport
-from ConfigParser import ConfigParser, NoOptionError, NoSectionError
+from configparser import ConfigParser, NoOptionError, NoSectionError
class InvalidConfigType(Exception): pass
class InvalidConfigSet(Exception): pass