summaryrefslogtreecommitdiffstats
path: root/Mac/Demo/embed.html
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2003-11-19 14:54:25 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2003-11-19 14:54:25 (GMT)
commitd338b6e31727d2ebd7393ec20fa44ab50653e290 (patch)
treeb033d21fd9097790e12c195e29b8db9c8582dd57 /Mac/Demo/embed.html
parent28ecf70db57828db2ca279643bf9aeca7662f35c (diff)
downloadcpython-d338b6e31727d2ebd7393ec20fa44ab50653e290.zip
cpython-d338b6e31727d2ebd7393ec20fa44ab50653e290.tar.gz
cpython-d338b6e31727d2ebd7393ec20fa44ab50653e290.tar.bz2
Removing the obvious OS9-only documentsĀ§
Diffstat (limited to 'Mac/Demo/embed.html')
-rw-r--r--Mac/Demo/embed.html44
1 files changed, 0 insertions, 44 deletions
diff --git a/Mac/Demo/embed.html b/Mac/Demo/embed.html
deleted file mode 100644
index e0ca756..0000000
--- a/Mac/Demo/embed.html
+++ /dev/null
@@ -1,44 +0,0 @@
-<HTML>
-<HEAD>
-<TITLE>Embedding Python on the Mac</TITLE>
-</HEAD>
-<BODY>
-<H1>Embedding Python on the Mac</H1>
-<HR>
-<B>Note</B>: if you have a binary-only release of MacPython you will not
-have this demo installed. Install the developer option (in the standard installer) or
-a source release if you want to embed
-Python in other applications. <p>
-
-Embedding Python on the mac is pretty similar to embedding it on other
-platforms, but a few points need mentioning:
-
-<UL>
-<LI> You call <CODE>PyMac_Initialize()</CODE> in stead of
-<CODE>Py_Initialize()</CODE>. The prototype is in <CODE>macglue.h</CODE>.
-This call initializes the toolbox, GUSI (if needed), sets up the correct
-resource files and calls Py_Initialize.
-
-<LI> You have to be consequent in your use of GUSI. If the library uses
-it so should your program and vice versa.
-
-<LI> The console-behaviour (close-on-exit, etc) is controlled by Python
-but you can overwrite this with <code>PyMac_SetConsoleHandler()</code>.
-</UL>
-
-The Python environment is started with a dummy argc and argv, and initial
-startup options are obtained through the usual means, except that the
-user pression the option-key will not result in an interactive dialog.
-You can, however, set startup options on your program in the same way as you
-do for applets, by dragging your application to <code>EditPythonPrefs</code>. <p>
-
-The most logical way to embed Python is to link it against the shared
-library <code>PythonCore</code>. An example project and source can be
-found in the <a href="embed">embed</a> folder. <p>
-
-This example code also shows how to override the console: if you pass the
-<code>-q</code> argument in the argument box output is thrown away. If you
-pass the <code>-d</code> option the output is sent to <code>DebugStr</code>
-(so be sure to use this only when running the example under a debugger).
-</BODY>
-</HTML>