Renamed the ConfigParser module to 'configparser'.

This commit is contained in:
Alexandre Vassalotti 2008-05-14 22:07:07 +00:00
parent 1b9df6862a
commit e3a23c0734
4 changed files with 13 additions and 1 deletions

View file

@ -0,0 +1,8 @@
import sys
from warnings import warnpy3k
warnpy3k("the ConfigParser module has been renamed "
"to 'configparser' in Python 3.0", stacklevel=2)
import configparser
sys.modules[__name__] = configparser