Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
Complex.py | D | 22-Nov-2023 | 9.7 KiB | 321 | 212 | |
Dates.py | D | 22-Nov-2023 | 7.6 KiB | 228 | 142 | |
Dbm.py | D | 22-Nov-2023 | 1.5 KiB | 67 | 48 | |
README | D | 22-Nov-2023 | 522 | 13 | 10 | |
Range.py | D | 22-Nov-2023 | 3.1 KiB | 94 | 78 | |
Rev.py | D | 22-Nov-2023 | 2 KiB | 96 | 82 | |
Vec.py | D | 22-Nov-2023 | 1.3 KiB | 69 | 48 | |
bitvec.py | D | 22-Nov-2023 | 10.2 KiB | 334 | 231 |
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