Alexandre Vassalotti | e3a23c0 | 2008-05-14 22:07:07 +0000 | [diff] [blame] | 1 | import sys |
2 | from warnings import warnpy3k | ||||
3 | |||||
4 | warnpy3k("the ConfigParser module has been renamed " | ||||
5 | "to 'configparser' in Python 3.0", stacklevel=2) | ||||
6 | |||||
7 | import configparser | ||||
8 | sys.modules[__name__] = configparser |