Lecture material for implementing a dict-like object in Python.
Find a file
2025-03-10 12:56:08 +00:00
.github/workflows Misc repo setup 2022-02-08 14:15:44 +01:00
src Fix the equality comparison bug we spotted during the session 2022-03-03 16:08:22 +01:00
tests Move real dictish tests into its own subdirectory 2022-03-03 02:02:05 +01:00
.gitignore Initial commit 2022-02-08 13:56:39 +01:00
dev-packages.txt Remove pytest-flake8 2022-02-11 15:57:41 +01:00
Lecture.md Split README into lecture plan, notes, and a basic README 2022-03-03 10:49:52 +01:00
LICENSE Initial commit 2022-02-08 13:56:39 +01:00
Makefile Upgrade pip on venv creation 2022-03-03 01:03:09 +01:00
README.md Remove unused GitHub shield 2025-03-10 12:56:08 +00:00
setup.cfg Configure flake line length 2022-02-08 17:22:42 +01:00

Dictish

Lecture material for implementing a dict-like object in Python without using a dict.