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
99d20f61
Commit
99d20f61
authored
Feb 18, 1995
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added imp; forget ctb and math for __SC__ (for now)
parent
eabdbff7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
5 deletions
+11
-5
Mac/Modules/config.c
Mac/Modules/config.c
+11
-5
No files found.
Mac/Modules/config.c
View file @
99d20f61
...
...
@@ -300,6 +300,7 @@ extern void initWin();
/* -- ADDMODULE MARKER 1 -- */
extern
void
initmarshal
();
extern
void
initimp
();
struct
{
char
*
name
;
...
...
@@ -307,7 +308,10 @@ struct {
}
inittab
[]
=
{
{
"array"
,
initarray
},
#ifndef __SC__
/* Do this one later... */
{
"math"
,
initmath
},
#endif
{
"parser"
,
initparser
},
{
"mac"
,
initmac
},
{
"MacOS"
,
MacOS_Init
},
...
...
@@ -328,7 +332,10 @@ struct {
#ifdef THINK_C
{
"macconsole"
,
initmacconsole
},
#endif
#ifndef __SC__
/* Do this one later... */
{
"ctb"
,
initctb
},
#endif
{
"macfs"
,
initmacfs
},
#ifdef __MWERKS__
/* This is really "Jack Jansen" specific for now :-) */
...
...
@@ -338,23 +345,22 @@ struct {
#endif
/* This is really "Guido van Rossum" specific... :-) */
{
"AE"
,
initAE
},
#ifdef THINK_C
{
"Ctl"
,
initCtl
},
{
"Dlg"
,
initDlg
},
#endif
{
"Evt"
,
initEvt
},
{
"Menu"
,
initMenu
},
{
"Qd"
,
initQd
},
{
"Res"
,
initRes
},
#ifdef THINK_C
{
"Snd"
,
initSnd
},
{
"Win"
,
initWin
},
#endif
{
"Res"
,
initRes
},
/* -- ADDMODULE MARKER 2 -- */
/* This module "lives in" with marshal.c */
{
"marshal"
,
initmarshal
},
/* This module "lives in" with import.c */
{
"imp"
,
initimp
},
/* These entries are here for sys.builtin_module_names */
{
"__main__"
,
NULL
},
...
...
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