summaryrefslogtreecommitdiffstats
path: root/Mac/Unsupported/PythonScript/PyScriptTest.py
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2002-12-13 13:38:28 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2002-12-13 13:38:28 (GMT)
commit8bf053feade9c854a6c351d1d892c3cf78413f36 (patch)
tree53cd7ae90d5c69ce91b54f9af53b911a94e28d63 /Mac/Unsupported/PythonScript/PyScriptTest.py
parentbb3e4cb14b8d2e78ae1f670dfff7b271ded33fde (diff)
downloadcpython-8bf053feade9c854a6c351d1d892c3cf78413f36.zip
cpython-8bf053feade9c854a6c351d1d892c3cf78413f36.tar.gz
cpython-8bf053feade9c854a6c351d1d892c3cf78413f36.tar.bz2
It was an old MacPython artefact that these files were still in the source
tree. Removed them, anyone really desparate to recover them can get them from the CVS repository.
Diffstat (limited to 'Mac/Unsupported/PythonScript/PyScriptTest.py')
-rw-r--r--Mac/Unsupported/PythonScript/PyScriptTest.py25
1 files changed, 0 insertions, 25 deletions
diff --git a/Mac/Unsupported/PythonScript/PyScriptTest.py b/Mac/Unsupported/PythonScript/PyScriptTest.py
deleted file mode 100644
index fee3203..0000000
--- a/Mac/Unsupported/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)
-