diff options
author | Georg Brandl <georg@python.org> | 2008-05-25 07:45:51 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-05-25 07:45:51 (GMT) |
commit | 38feaf0fef244879411f094a7e68f542a6771dea (patch) | |
tree | 632d870bad650ece1724111091a2b307759ea997 /PC/config.c | |
parent | 2cb57a40b28f4680a1433d4640d99f4b2efe7165 (diff) | |
download | cpython-38feaf0fef244879411f094a7e68f542a6771dea.zip cpython-38feaf0fef244879411f094a7e68f542a6771dea.tar.gz cpython-38feaf0fef244879411f094a7e68f542a6771dea.tar.bz2 |
#2879: rename _winreg to winreg.
Diffstat (limited to 'PC/config.c')
-rw-r--r-- | PC/config.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/PC/config.c b/PC/config.c index e3bbde7..1522533 100644 --- a/PC/config.c +++ b/PC/config.c @@ -42,7 +42,7 @@ extern void initmmap(void); extern void init_csv(void); extern void init_sre(void); extern void initparser(void); -extern void init_winreg(void); +extern void initwinreg(void); extern void init_struct(void); extern void initdatetime(void); extern void init_functools(void); @@ -116,7 +116,7 @@ struct _inittab _PyImport_Inittab[] = { {"_csv", init_csv}, {"_sre", init_sre}, {"parser", initparser}, - {"_winreg", init_winreg}, + {"winreg", initwinreg}, {"_struct", init_struct}, {"datetime", initdatetime}, {"_functools", init_functools}, |