blob: c10001fe48b3ed59cb2a0e79fe885df649402a52 [file] [log] [blame]
Guido van Rossume8769491992-08-13 12:14:11 +00001Examples of classes that implement special operators (see class.doc):
2
3Complex.py Complex numbers
4Dbm.py Wrapper around built-in dbm, supporting arbitrary values
5Range.py Example of a generator: re-implement built-in range()
6Rat.py Rational numbers
7Vec.py A simple vector class
8
9(For straightforward examples of basic class features, such as use of
10methods and inheritance, see the library code -- especially the window
11modules are full of them.)