diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2001-05-10 12:17:03 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2001-05-10 12:17:03 (GMT) |
commit | d454b578e29e073250936948df5044e41fada772 (patch) | |
tree | 379ff07879dddaf262539ee01892c87a865494be /Mac/Unsupported/twit/mactwit_edit.py | |
parent | 95bf9390a488004f66db1eccaa049203ef8ab5b3 (diff) | |
download | cpython-d454b578e29e073250936948df5044e41fada772.zip cpython-d454b578e29e073250936948df5044e41fada772.tar.gz cpython-d454b578e29e073250936948df5044e41fada772.tar.bz2 |
Has been dead so long that there's no use keeping it in the active bit of the repository.
Diffstat (limited to 'Mac/Unsupported/twit/mactwit_edit.py')
-rw-r--r-- | Mac/Unsupported/twit/mactwit_edit.py | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/Mac/Unsupported/twit/mactwit_edit.py b/Mac/Unsupported/twit/mactwit_edit.py deleted file mode 100644 index ace253d..0000000 --- a/Mac/Unsupported/twit/mactwit_edit.py +++ /dev/null @@ -1,24 +0,0 @@ -"""Edit a file using the MetroWerks editor. Modify to suit your needs""" - -import MacOS -import aetools -import Metrowerks_Shell_Suite -import Required_Suite - -_talker = None - -class MWShell(aetools.TalkTo, - Metrowerks_Shell_Suite.Metrowerks_Shell_Suite, - Required_Suite.Required_Suite): - pass - -def edit(file, line): - global _talker - if _talker == None: - _talker = MWShell('CWIE', start=1) - try: - _talker.open(file) - _talker.Goto_Line(line) - except "(MacOS.Error, aetools.Error)": - pass - |