[Python-checkins] cpython: add _stat to list of builtin Windows modules

christian.heimes python-checkins at python.org
Sun Jun 23 15:47:03 CEST 2013


http://hg.python.org/cpython/rev/838f04e5a690
changeset:   84273:838f04e5a690
parent:      84271:f90d82a75a43
user:        Christian Heimes <christian at cheimes.de>
date:        Sun Jun 23 15:46:56 2013 +0200
summary:
  add _stat to list of builtin Windows modules

files:
  PC/config.c |  2 ++
  1 files changed, 2 insertions(+), 0 deletions(-)


diff --git a/PC/config.c b/PC/config.c
--- a/PC/config.c
+++ b/PC/config.c
@@ -64,6 +64,7 @@
 extern PyObject* PyInit_atexit(void);
 extern PyObject* _PyWarnings_Init(void);
 extern PyObject* PyInit__string(void);
+extern PyObject* PyInit__stat(void);
 
 /* tools/freeze/makeconfig.py marker for additional "extern" */
 /* -- ADDMODULE MARKER 1 -- */
@@ -154,6 +155,7 @@
     {"_io", PyInit__io},
     {"_pickle", PyInit__pickle},
     {"atexit", PyInit_atexit},
+    {"_stat", PyInit__stat},
 
     /* Sentinel */
     {0, 0}

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list