• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

Complex.pyD25-Apr-20259.7 KiB321212

Dates.pyD25-Apr-20257.6 KiB228142

Dbm.pyD25-Apr-20251.5 KiB6748

READMED25-Apr-2025522 1310

Range.pyD25-Apr-20253.1 KiB9478

Rev.pyD25-Apr-20252 KiB9682

Vec.pyD25-Apr-20251.3 KiB6948

bitvec.pyD25-Apr-202510.2 KiB334231

README

1Examples of classes that implement special operators (see reference manual):
2
3Complex.py	Complex numbers
4Dates.py	Date manipulation package by Tim Peters
5Dbm.py		Wrapper around built-in dbm, supporting	arbitrary values
6Range.py	Example of a generator: re-implement built-in range()
7Rev.py		Yield the reverse of a sequence
8Vec.py		A simple vector class
9bitvec.py	A bit-vector class by Jan-Hein B\"uhrman
10
11(For straightforward examples of basic class features, such as use of
12methods and inheritance, see the library code.)
13