indexed.py
indexed.py copied to clipboard
A Python dictionary that is indexed by insertion order
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. Release notes Sourced from actions/checkout's releases. v4.0.0 What's Changed Update default runtime to node20 by @takost in actions/checkout#1436 Support fetching without the --progress option...
Looks like build-in OrderedDict is more advanced as you can declare it as generic type in typehints
I wanted to create a subset of IndexedOrderedDict that contains a slice of items of the original IndexedOrderedDict. I get an error. Here is an example code: ``` >>> from...