Staging
v0.8.1
https://github.com/python/cpython
Revision d29eb6232cf7d71e5f5bffd70668b3e18835797a authored by cvs2svn on 29 July 1993, 13:14:32 UTC, committed by cvs2svn on 29 July 1993, 13:14:32 UTC
1 parent e906606
Raw File
Tip revision: d29eb6232cf7d71e5f5bffd70668b3e18835797a authored by cvs2svn on 29 July 1993, 13:14:32 UTC
This commit was manufactured by cvs2svn to create tag 'release099'.
Tip revision: d29eb62
README
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.

sockets		Examples for the new built-in module 'socket'.

sgi		Demos that only run on Silicon Graphics machines.
		These require at least one of the optional built-in
		modules that only make sense for the SGI, such as
		the modules 'gl' and 'al'.  Split in subdirectories
		per subject.

stdwin		Demos that use the STDWIN library.  Require the 'stdwin'
		built-in module.

WARNING: many scripts are executable and have a first line saying

	#! /usr/local/python

This is unlikely to give good results unless you've really installed
the latest version python there.  Edit the first line before
installing such scripts; to try them out, you can just say "python
foo.py" or enter python interactively and say "import foo".
back to top