From: Jack Jansen Date: Sun, 20 Aug 2000 20:06:51 +0000 (+0000) Subject: Updated for new AppleScript structure and moved to Lib (it's far too useful to lurk... X-Git-Tag: v2.0b1~344 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=742ca0385a7c42f5672db82a093f29a22f3dd7a7;p=thirdparty%2FPython%2Fcpython.git Updated for new AppleScript structure and moved to Lib (it's far too useful to lurk in the source folder). --- diff --git a/Mac/Modules/ae/nsremote.py b/Mac/Lib/nsremote.py similarity index 86% rename from Mac/Modules/ae/nsremote.py rename to Mac/Lib/nsremote.py index c40629463e49..a12cd350bdfe 100644 --- a/Mac/Modules/ae/nsremote.py +++ b/Mac/Lib/nsremote.py @@ -14,15 +14,9 @@ Jack Jansen, CWI, January 1996. import sys import aetools -import Standard_Suite -import WWW_Suite +import Netscape import MacOS -class Netscape(aetools.TalkTo, Standard_Suite.Standard_Suite, WWW_Suite.WorldWideWeb_suite_2c__as_defined_in_Spyglass_spec_2e_): - pass - -SIGNATURE='MOSS' - Error = 'nsremote.Error' _talker = None @@ -30,7 +24,7 @@ _talker = None def _init(): global _talker if _talker == None: - _talker = Netscape(SIGNATURE) + _talker = Netscape.Netscape() def list(dpyinfo=""): _init()