Comment on A high-performance, zero-overhead, extensible Python compiler using LLVMparentComments−funny_falcon1yReadability, reproducibility, and simple LRU.Reproducibility matters for tests, they become simpler. Some other algorithms become simpler as well.LRU is just a dict with preserving order: on access just delete and insert again.
Comments
Readability, reproducibility, and simple LRU.
Reproducibility matters for tests, they become simpler. Some other algorithms become simpler as well.
LRU is just a dict with preserving order: on access just delete and insert again.