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
0e73c887
Commit
0e73c887
authored
Dec 30, 2002
by
Jack Jansen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added zipimport and _random module.
parent
c16a7adc
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
0 deletions
+4
-0
Mac/Build/PythonCore.mcp
Mac/Build/PythonCore.mcp
+0
-0
Mac/Build/PythonStandSmall.mcp
Mac/Build/PythonStandSmall.mcp
+0
-0
Mac/Modules/macconfig.c
Mac/Modules/macconfig.c
+4
-0
No files found.
Mac/Build/PythonCore.mcp
View file @
0e73c887
No preview for this file type
Mac/Build/PythonStandSmall.mcp
View file @
0e73c887
No preview for this file type
Mac/Modules/macconfig.c
View file @
0e73c887
...
...
@@ -167,6 +167,7 @@ extern void init_hotshot();
extern
void
initpyexpat
();
#endif
extern
void
initgc
();
extern
void
init_random
();
extern
void
initcPickle
();
extern
void
initcStringIO
();
...
...
@@ -175,6 +176,7 @@ extern void initsha();
extern
void
init_locale
();
extern
void
init_sre
();
extern
void
initxreadlines
();
extern
void
initzipimport
();
/* -- ADDMODULE MARKER 1 -- */
extern
void
PyMarshal_Init
();
...
...
@@ -292,11 +294,13 @@ struct _inittab _PyImport_Inittab[] = {
{
"pyexpat"
,
initpyexpat
},
#endif
{
"gc"
,
initgc
},
{
"_random"
,
init_random
},
{
"cPickle"
,
initcPickle
},
{
"cStringIO"
,
initcStringIO
},
{
"_locale"
,
init_locale
},
{
"_sre"
,
init_sre
},
{
"xreadlines"
,
initxreadlines
},
{
"zipimport"
,
initzipimport
},
/* -- ADDMODULE MARKER 2 -- */
/* This module "lives in" with marshal.c */
...
...
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