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
c9a35694
Commit
c9a35694
authored
Jan 25, 1995
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
split PATH over multiple lines for clarity;
added some generated modules
parent
bf068b15
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
1 deletion
+20
-1
Mac/Modules/config.c
Mac/Modules/config.c
+20
-1
No files found.
Mac/Modules/config.c
View file @
c9a35694
...
...
@@ -107,7 +107,7 @@ getversion()
char
*
getcopyright
()
{
return
"Copyright 1991-199
4
Stichting Mathematisch Centrum, Amsterdam"
;
return
"Copyright 1991-199
5
Stichting Mathematisch Centrum, Amsterdam"
;
}
...
...
@@ -118,6 +118,13 @@ getcopyright()
default path is always returned.) The default path may be passed
to the preprocessor; if not, a system-dependent default is used. */
#define PYTHONPATH "\
:\n\
:Lib\n\
:Lib:stdwin\n\
:Lib:test\n\
:Lib:mac"
#ifndef PYTHONPATH
#ifdef macintosh
/* Mod by Jack: \n is now separator. */
...
...
@@ -268,7 +275,13 @@ extern void initmacspeech();
extern
void
initmacdnr
();
extern
void
initmactcp
();
extern
void
initAE
();
extern
void
initCtl
();
extern
void
initDlg
();
extern
void
initEvt
();
extern
void
initMenu
();
extern
void
initRes
();
extern
void
initSnd
();
extern
void
initWin
();
/* -- ADDMODULE MARKER 1 -- */
...
...
@@ -312,7 +325,13 @@ struct {
#ifdef THINK_C
/* This is really "Guido van Rossum" specific... :-) */
{
"AE"
,
initAE
},
{
"Ctl"
,
initCtl
},
{
"Dlg"
,
initDlg
},
{
"Evt"
,
initEvt
},
{
"Menu"
,
initMenu
},
{
"Res"
,
initRes
},
{
"Snd"
,
initSnd
},
{
"Win"
,
initWin
},
#endif
/* -- ADDMODULE MARKER 2 -- */
...
...
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