diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2001-10-26 12:55:39 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2001-10-26 12:55:39 (GMT) |
commit | f0a2ac9d5bf4f233824b7fcd6c232a41e5670284 (patch) | |
tree | abdc53e56d0aabefdcc4a50da55806fc47486b41 /Mac/Contrib/PythonScript/PyScriptTest.py | |
parent | de3d060eb23c955a656730cc54a55eaf94f6d959 (diff) | |
download | cpython-f0a2ac9d5bf4f233824b7fcd6c232a41e5670284.zip cpython-f0a2ac9d5bf4f233824b7fcd6c232a41e5670284.tar.gz cpython-f0a2ac9d5bf4f233824b7fcd6c232a41e5670284.tar.bz2 |
Moved PythonScript to unsupported at Bill Bedford's request. It'll go
away completely next release, unless someone complains.
Diffstat (limited to 'Mac/Contrib/PythonScript/PyScriptTest.py')
-rw-r--r-- | Mac/Contrib/PythonScript/PyScriptTest.py | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/Mac/Contrib/PythonScript/PyScriptTest.py b/Mac/Contrib/PythonScript/PyScriptTest.py deleted file mode 100644 index fee3203..0000000 --- a/Mac/Contrib/PythonScript/PyScriptTest.py +++ /dev/null @@ -1,25 +0,0 @@ -''' -Minimal test module -'''# - -import sys -import PythonScript - -SIGNATURE = 'MACS' -TIMEOUT = 10*60*60 - -PythonScript.PsScript(SIGNATURE, TIMEOUT) -p = PythonScript.PyScript -ev = PythonScript.PsEvents -pc = PythonScript.PsClass -pp = PythonScript.PsProperties - -startup = str(p(ev.Get, pc.Desktopobject(1).Startup_disk().Name())) -print 'startup',startup, type(startup) -print p(ev.Get, pc.Disk(startup).Folder(7).File(1).Name()) -print p(ev.Get, pc.Disk(1).Name()) -print p(ev.Get, pc.Disk('every').Name()) -print p(ev.Make, None, New='Alias_file', At=pp.Desktop(''), To=pp.System_folder(1)) - -sys.exit(1) - |