summaryrefslogtreecommitdiffstats
path: root/Mac/Python/macmain.c
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2000-05-05 23:11:14 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2000-05-05 23:11:14 (GMT)
commit0c6d037cc5f53420d519f108eaa4a7cdd76379bf (patch)
treeaa01d18dfb50df7de65badc2ce61ab6bf31247ea /Mac/Python/macmain.c
parent1fdadcd42cd430d6e77c1df1ed1df777ca3ff4a2 (diff)
downloadcpython-0c6d037cc5f53420d519f108eaa4a7cdd76379bf.zip
cpython-0c6d037cc5f53420d519f108eaa4a7cdd76379bf.tar.gz
cpython-0c6d037cc5f53420d519f108eaa4a7cdd76379bf.tar.bz2
Removed string-exception preference, added tabcheck and NavService preference, upped version number.
Diffstat (limited to 'Mac/Python/macmain.c')
-rw-r--r--Mac/Python/macmain.c36
1 files changed, 33 insertions, 3 deletions
diff --git a/Mac/Python/macmain.c b/Mac/Python/macmain.c
index 98298c8..98c8323 100644
--- a/Mac/Python/macmain.c
+++ b/Mac/Python/macmain.c
@@ -149,8 +149,9 @@ PyMac_InteractiveOptions(PyMac_PrefRecord *p, int *argcp, char ***argvp)
SET_OPT_ITEM(OPT_DEBUGGING, debugging);
SET_OPT_ITEM(OPT_KEEPNORMAL, keep_normal);
SET_OPT_ITEM(OPT_KEEPERROR, keep_error);
- SET_OPT_ITEM(OPT_OLDEXC, oldexc);
+ SET_OPT_ITEM(OPT_TABWARN, tabwarn);
SET_OPT_ITEM(OPT_NOSITE, nosite);
+ SET_OPT_ITEM(OPT_NONAVSERV, nonavservice);
/* The rest are not settable interactively */
#undef SET_OPT_ITEM
@@ -199,8 +200,9 @@ PyMac_InteractiveOptions(PyMac_PrefRecord *p, int *argcp, char ***argvp)
OPT_ITEM(OPT_DEBUGGING, debugging);
OPT_ITEM(OPT_KEEPNORMAL, keep_normal);
OPT_ITEM(OPT_KEEPERROR, keep_error);
- OPT_ITEM(OPT_OLDEXC, oldexc);
+ OPT_ITEM(OPT_TABWARN, tabwarn);
OPT_ITEM(OPT_NOSITE, nosite);
+ OPT_ITEM(OPT_NONAVSERV, nonavservice);
#undef OPT_ITEM
}
@@ -266,7 +268,7 @@ init_common(int *argcp, char ***argvp, int embedded)
Py_OptimizeFlag = options.optimize;
Py_DebugFlag = options.debugging;
Py_NoSiteFlag = options.nosite;
- Py_UseClassExceptionsFlag = !(options.oldexc);
+ Py_TabcheckFlag = options.tabwarn;
if ( options.noargs ) {
/* don't process events at all without the scripts permission */
PyMacSchedParams scp;
@@ -313,6 +315,30 @@ run_inspect()
return sts;
}
+/*
+** Import the macfsn module, which will override the Standard File
+** calls in the macfs builtin module by Navigation Services versions,
+** if available on this machine.
+*/
+static void
+PyMac_InstallNavServicesForSF()
+{
+ if ( !options.nonavservice ) {
+ PyObject *m = PyImport_ImportModule("macfsn");
+
+ if ( m == NULL ) {
+ PySys_WriteStderr("'import macfsn' failed; ");
+ if (Py_VerboseFlag) {
+ PySys_WriteStderr("traceback:\n");
+ PyErr_Print();
+ }
+ else {
+ PySys_WriteStderr("use -v for traceback\n");
+ }
+ }
+ }
+}
+
#ifdef USE_MAC_APPLET_SUPPORT
/* Applet support */
@@ -360,6 +386,7 @@ PyMac_InitApplet()
init_common(&argc, &argv, 0);
Py_Initialize();
+ PyMac_InstallNavServicesForSF();
PySys_SetArgv(argc, argv);
err = run_main_resource();
@@ -383,6 +410,7 @@ PyMac_Initialize()
init_common(&argc, &argv, 1);
Py_Initialize();
+ PyMac_InstallNavServicesForSF();
PySys_SetArgv(argc, argv);
}
@@ -448,6 +476,8 @@ Py_Main(argc, argv)
Py_Initialize();
+ PyMac_InstallNavServicesForSF();
+
PySys_SetArgv(argc-1, argv+1);
if (filename == NULL && isatty((int)fileno(fp))) {