summaryrefslogtreecommitdiff
path: root/frozendict/__init__.py
Commit message (Collapse)AuthorAge
* Python 3.10 compatibility: collections.Mapping removedHEADarchive/debian/1.2-3masterAndrej Shadura2021-11-18
| | | | | | | "Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3, and in 3.10 it will stop working" Gbp-Pq: Name py3.10.patch
* Merge pull request #12 from lurch/patch-1Santiago Lezica2016-10-06
|\ | | | | docstring correction
| * docstring correctionAndrew Scheller2016-09-07
| | | | | | frozendict doesn't preserve ordering
* | Merge branch 'perf-improvements' of ↵Santiago Lezica2016-10-06
|\ \ | | | | | | | | | https://github.com/eugene-eeo/python-frozendict into eugene-eeo-perf-improvements
| * | fix memory explosion, much faster version.Eeo Jun2016-09-26
| |/
* | Apply review commentPawel Polewicz2016-09-27
| |
* | Restore compatibility with python 2.6Pawel Polewicz2016-09-27
|/ | | | | | | | | | | | | | | | 63895ec09d5e28f4c3a308c737503c61e4e3bb43 accidentally broke python 2.6 compatibility due to usage of OrderedDict, which is not available in the collections module in that version. Possible fixes were: 1. Skip defining FrozenOrderedDict when running 2.6 2. Depend on ordereddict module when running 2.6 and import it when needed 3. Copy OrderedDict recipe and use it when needed 4. Do not provide FrozenOrderedDict on 2.6 the last one was chosen due to maintainer preference to keep the code base compact.
* Version 1.0Santiago Lezica2016-07-22
|
* Even DRYer FrozenOrderedDict classEeo Jun2016-04-27
|
* Keep things simple and DRYEeo Jun2016-04-27
|
* More efficient __contains__Eeo Jun2016-04-27
|
* Rename frozenordereddict to FrozenOrderedDictJoe2016-03-17
|
* Implement frozenordereddictJoe2016-03-07
|
* Fix Python 3 errorsJason R. Coombs2014-07-16
|
* Rearrange importsJason R. Coombs2014-07-16
|
* Update __init__.pySantiago Lezica2014-02-23
|
* Initial commitSantiago Lezica2012-12-07