diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2000-08-20 20:06:51 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2000-08-20 20:06:51 (GMT) |
commit | 742ca0385a7c42f5672db82a093f29a22f3dd7a7 (patch) | |
tree | 974a56924b37fd9254aaa6325fe466bce9aee1a7 | |
parent | 18b47a07b7e0d962a9ae4cade56eebbf46e1273a (diff) | |
download | cpython-742ca0385a7c42f5672db82a093f29a22f3dd7a7.zip cpython-742ca0385a7c42f5672db82a093f29a22f3dd7a7.tar.gz cpython-742ca0385a7c42f5672db82a093f29a22f3dd7a7.tar.bz2 |
Updated for new AppleScript structure and moved to Lib (it's far too useful to lurk in the source folder).
-rw-r--r-- | Mac/Lib/nsremote.py (renamed from Mac/Modules/ae/nsremote.py) | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/Mac/Modules/ae/nsremote.py b/Mac/Lib/nsremote.py index c406294..a12cd35 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() |