summaryrefslogtreecommitdiffstats
path: root/Mac/Modules
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1995-07-28 11:29:54 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1995-07-28 11:29:54 (GMT)
commit4cae5e6c0a73f4cf8fdc80761feb30fcf63acd8d (patch)
treec9a73836e03f4babf80099348f5d5c0fe1492bd6 /Mac/Modules
parent614cf816061f47e48c6ad01ac8c6e8a9634bb3ec (diff)
downloadcpython-4cae5e6c0a73f4cf8fdc80761feb30fcf63acd8d.zip
cpython-4cae5e6c0a73f4cf8fdc80761feb30fcf63acd8d.tar.gz
cpython-4cae5e6c0a73f4cf8fdc80761feb30fcf63acd8d.tar.bz2
- Added getplatform()
- (temporarily?) removed newmodule reference
Diffstat (limited to 'Mac/Modules')
-rw-r--r--Mac/Modules/config.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/Mac/Modules/config.c b/Mac/Modules/config.c
index 224be8b..bb8ecd0 100644
--- a/Mac/Modules/config.c
+++ b/Mac/Modules/config.c
@@ -128,6 +128,11 @@ getcopyright()
return "Copyright 1991-1995 Stichting Mathematisch Centrum, Amsterdam";
}
+char *
+getplatform()
+{
+ return "mac";
+}
/* Return the initial python search path. This is called once from
initsys() to initialize sys.path.
@@ -282,7 +287,9 @@ extern void initfl();
extern void initthread();
extern void inittiming();
extern void initsignal();
+#if 0
extern void initnew();
+#endif
extern void initdl();
extern void initsyslog();
extern void initgestalt();
@@ -353,7 +360,9 @@ struct {
#endif
{"md5", initmd5},
{"rotor", initrotor},
+#if 0
{"new", initnew},
+#endif
{"gestalt", initgestalt},
{"macfs", initmacfs},
#ifdef THINK_C