aboutsummaryrefslogtreecommitdiff
path: root/demo/README
diff options
context:
space:
mode:
authorSkip Montanaro <[email protected]>2021-02-16 14:40:46 -0600
committerSkip Montanaro <[email protected]>2021-02-16 14:40:46 -0600
commita19a216bc60160c162e616145ef091dd18ce4e61 (patch)
treefa4bdff21f9b04a125c84a2bfab8a1c738359e15 /demo/README
downloadpython-0.9.1-patched-QoL-a19a216bc60160c162e616145ef091dd18ce4e61.tar.xz
python-0.9.1-patched-QoL-a19a216bc60160c162e616145ef091dd18ce4e61.zip
Python 0.9.1 as posted in alt.sources
Diffstat (limited to 'demo/README')
-rw-r--r--demo/README22
1 files changed, 22 insertions, 0 deletions
diff --git a/demo/README b/demo/README
new file mode 100644
index 0000000..a9ff224
--- /dev/null
+++ b/demo/README
@@ -0,0 +1,22 @@
+This directory contains various demonstrations of what you can do with
+Python. The demos are grouped sub(sub*)directories according to
+required optional built-in modules.
+
+scripts Some useful Python scripts that I put in my bin
+ directory. No optional built-in modules meeded.
+
+sgi Demos that only run on Silicon Graphics machines.
+ Require the built-in modules 'audio' and/or 'gl'.
+
+stdwin Demos that use the STDWIN library. Require the 'stdwin'
+ built-in module.
+
+WARNING: some scripts are executable and have a first line saying
+
+ #! /ufs/guido/bin/sgi/python
+
+This is unlikely to give good results anywhere else except in my
+office. Edit the first line before installing such scripts; to try
+them out, you can just say "python file.py". (The .py suffix is not
+necessary in this case, but makes it possible to debug the modules
+interactively by importing them.)