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
5820d04a
Commit
5820d04a
authored
Aug 29, 1997
by
Barry Warsaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Declarations for two phase initialization and finalization functions
for the built-in module.
parent
1dabf3b1
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
Include/pythonrun.h
Include/pythonrun.h
+4
-2
No files found.
Include/pythonrun.h
View file @
5820d04a
...
...
@@ -84,13 +84,15 @@ const char *Py_GetBuildInfo Py_PROTO((void));
/* Internal -- various one-time initializations */
PyObject
*
_PyBuiltin_Init
Py_PROTO
((
void
));
PyObject
*
_PyBuiltin_Init_1
Py_PROTO
((
void
));
void
_PyBuiltin_Init_2
Py_PROTO
((
PyObject
*
));
PyObject
*
_PySys_Init
Py_PROTO
((
void
));
void
_PyImport_Init
Py_PROTO
((
void
));
/* Various internal finalizers */
void
_PyImport_Fini
Py_PROTO
((
void
));
void
_PyBuiltin_Fini
Py_PROTO
((
void
));
void
_PyBuiltin_Fini_1
Py_PROTO
((
void
));
void
_PyBuiltin_Fini_2
Py_PROTO
((
void
));
void
PyMethod_Fini
Py_PROTO
((
void
));
void
PyFrame_Fini
Py_PROTO
((
void
));
void
PyCFunction_Fini
Py_PROTO
((
void
));
...
...
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