indexed.py icon indicating copy to clipboard operation
indexed.py copied to clipboard

A Python dictionary that is indexed by insertion order

Results 3 indexed.py issues
Sort by recently updated
recently updated
newest added

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...

dependencies

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...