Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3b80526

Browse files
committed
(finally) unified the interpreter and the applet as Just suggested ages ago. The
resulting program is called PythonInterpreter.
1 parent f32834c commit 3b80526

5 files changed

Lines changed: 7 additions & 14 deletions

File tree

Mac/Build/PythonApplet.prj

-81.9 KB
Binary file not shown.

Mac/Demo/building.html

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -346,8 +346,8 @@ <H2>Building the PPC and CFM68K interpreter</H2>
346346
First you optionally build the external libraries with buildlibs.prj. Next,
347347
the projects for
348348
interpreter, core library and applet skeleton are all linked together, so
349-
building the fat targets in <code>Python.prj</code> and
350-
<code>PythonApplet.prj</code> will result in everything being built. The
349+
building the fat target in <code>PythonEngine.prj</code>
350+
will result in everything being built. The
351351
resulting applications and fat shared library are deposited in the main
352352
Python folder. Finally, you build all the plugins with the plugins.prj project.
353353

@@ -364,16 +364,10 @@ <H2>Building the PPC and CFM68K interpreter</H2>
364364
forget to copy it to the extensions folder again. The InstallPython applet
365365
will also do this, along with creating the plugin aliases.
366366

367-
<DT> Python
367+
<DT> PythonInterpeter
368368
<DD> The interpreter. This is basically a routine to call out to the
369-
shared library. <p>
370-
371-
<DT> PythonAppletPPC
372-
<DD> The applet skeleton application. Very similar to
373-
<code>PythonPPC</code>, but it calls to a different entrypoint in the
374-
core library. The <code>mkapplet</code> script will copy this complete
375-
file, and add a <code>'PYC '</code> with the module to generate an
376-
applet. <p>
369+
shared library. Unlike in previous releases the same program is used for
370+
creating applets (for which formerly PythonApplet was used). <p>
377371

378372
<DT> Plugin projects
379373
<DD> Each plugin module has a separate project. The <code>Plugins.prj</code>

Mac/Lib/buildtools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
MAGIC = imp.get_magic()
2323

2424
# Template file (searched on sys.path)
25-
TEMPLATE = "PythonApplet"
25+
TEMPLATE = "PythonInterpreter"
2626

2727
# Specification of our resource
2828
RESTYPE = 'PYC '

Mac/scripts/fullbuild.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,7 @@ def handle_dialog(filename):
149149
BUILD_DICT = {
150150
I_CORE : (buildmwproject, "CWIE", [
151151
(":Mac:Build:PythonCore.prj", "PythonCore"),
152-
(":Mac:Build:Python.prj", "PythonFAT"),
153-
(":Mac:Build:PythonApplet.prj", "PythonAppletFAT"),
152+
(":Mac:Build:PythonInterpreter.prj", "PythonInterpreter"),
154153
]),
155154

156155
I_PPC_PLUGINS : (buildmwproject, "CWIE", [

0 commit comments

Comments
 (0)