summaryrefslogtreecommitdiff
path: root/PC/config.c
diff options
context:
space:
mode:
authorAlexander Belopolsky <alexander.belopolsky@gmail.com>2010-07-23 19:25:47 +0000
committerAlexander Belopolsky <alexander.belopolsky@gmail.com>2010-07-23 19:25:47 +0000
commitcf86e368ebd17e10f68306ebad314eea31daaa1e (patch)
tree8b7d0a707f8ac750e4cc251ed8533a43d4367ebb /PC/config.c
parentc2721b0cd0b61b1369a01bd53a52e898464ca37d (diff)
downloadcpython-git-cf86e368ebd17e10f68306ebad314eea31daaa1e.tar.gz
Issue #7989: Added pure python implementation of the datetime module.
Diffstat (limited to 'PC/config.c')
-rw-r--r--PC/config.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/PC/config.c b/PC/config.c
index 28d02b1b91..7d501b50e1 100644
--- a/PC/config.c
+++ b/PC/config.c
@@ -43,7 +43,7 @@ extern PyObject* PyInit__sre(void);
extern PyObject* PyInit_parser(void);
extern PyObject* PyInit_winreg(void);
extern PyObject* PyInit__struct(void);
-extern PyObject* PyInit_datetime(void);
+extern PyObject* PyInit__datetime(void);
extern PyObject* PyInit__functools(void);
extern PyObject* PyInit__json(void);
extern PyObject* PyInit_zlib(void);
@@ -116,7 +116,7 @@ struct _inittab _PyImport_Inittab[] = {
{"parser", PyInit_parser},
{"winreg", PyInit_winreg},
{"_struct", PyInit__struct},
- {"datetime", PyInit_datetime},
+ {"_datetime", PyInit__datetime},
{"_functools", PyInit__functools},
{"_json", PyInit__json},