summaryrefslogtreecommitdiff
path: root/persistent.py
AgeCommit message (Collapse)Author
2022-02-03Change settings in flake8 and black.Scott Gasch
2022-02-02Let's be explicit with asserts; there was a bug in histogramScott
caused by assert foo when foo was an int with valid valid 0.
2022-02-02Used isort to sort imports. Also added to the git pre-commit hook.Scott
2022-02-02Fix a problem introduced with previous type cleanup change.Scott
2022-02-02More type annotations.Scott
2022-01-26Ahem. Still running black?Scott
2022-01-26Ran black code formatter on everything.Scott
2022-01-12"Fix" a flaky test and cleanup an unused import.Scott
2022-01-12Add doctests, general cleanup.Scott
2022-01-12Scale back warnings.warn and add stacklevels= where appropriate.Scott
2022-01-11Start using warnings from stdlib.Scott
2021-09-24Oh my god, I fucking hate pickle, dill, cloudpickle and all thatScott Gasch
stuff. What a total pain in the ass. I kept getting pickle complaining about class not really being class and refusing to write if any other modules were imported between the creation and the save that I gave up and moved save and load to user defined things. Maybe a better design anyway.
2021-09-22Various little changes. Naming. Durations as arguments.Scott Gasch
2021-09-22Updated docs.Scott Gasch
2021-09-22Improve persistent after actually using it.Scott Gasch
2021-09-21Persistent state.Scott Gasch