Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
c44ff863
Commit
c44ff863
authored
Jun 23, 2013
by
Christian Heimes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add _stat to list of builtin Windows modules
parent
8cfd67cf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
PC/config.c
PC/config.c
+2
-0
No files found.
PC/config.c
View file @
c44ff863
...
...
@@ -64,6 +64,7 @@ extern PyObject* PyInit__pickle(void);
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 @@ struct _inittab _PyImport_Inittab[] = {
{
"_io"
,
PyInit__io
},
{
"_pickle"
,
PyInit__pickle
},
{
"atexit"
,
PyInit_atexit
},
{
"_stat"
,
PyInit__stat
},
/* Sentinel */
{
0
,
0
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment