Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ed49c5e

Browse files
committed
*** empty log message ***
1 parent f1bbf9c commit ed49c5e

2 files changed

Lines changed: 31 additions & 5 deletions

File tree

Demo/README

Lines changed: 30 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,49 @@
11
This directory contains various demonstrations of what you can do with
2-
Python. The demos are grouped sub(sub*)directories according to
3-
required optional built-in modules.
2+
Python. Most demos are grouped sub(sub*)directories according to
3+
required optional built-in modules or specific platform; there is also
4+
a set of generally useful scripts and there are some more-or-less
5+
complete applications.
6+
7+
classes Some examples of how to use classes.
8+
9+
ibrowse An Emacs info file browser (uses stdwin).
10+
See also ../doc (the Python library documentation can
11+
be converted to info format).
12+
13+
md5test Test program for the optional md5 module.
14+
15+
rpc A set of classes for building clients and servers for
16+
Sun RPC.
17+
18+
rsa An RSA public-key cryptosystem (needs mpz and md5).
419

520
scripts Some useful Python scripts that I put in my bin
6-
directory. No optional built-in modules meeded.
21+
directory. No optional built-in modules needed.
722

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

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

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

34+
threads Demos that use the 'thread' module. (Currently these
35+
only run on SGIs, but this may change in the future.)
36+
37+
www Browsers for CERN's distributed hypertext system
38+
World-Wide Web (one with a stdwin-based user
39+
interface, one for dumb ttys). Also contains a
40+
primitive gopher client and an ftp client.
41+
See also ../doc (the Python library documentation can
42+
be converted to WWW's "HTML" format).
43+
1944
WARNING: many scripts are executable and have a first line saying
2045

21-
#! /usr/local/python
46+
#! /usr/local/bin/python
2247

2348
This is unlikely to give good results unless you've really installed
2449
the latest version python there. Edit the first line before

Demo/classes/README

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Dbm.py Wrapper around built-in dbm, supporting arbitrary values
55
Range.py Example of a generator: re-implement built-in range()
66
Rat.py Rational numbers
77
Vec.py A simple vector class
8+
bitvec.py A bit-vector class by Jan-Hein B\"uhrman
89

910
(For straightforward examples of basic class features, such as use of
1011
methods and inheritance, see the library code -- especially the window

0 commit comments

Comments
 (0)