summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-nocasedict_1.0.4.bb
Commit message (Collapse)AuthorAgeFilesLines
* python3-nocasedict: Upgrade 1.0.4 -> 1.1.0Leon Anavi2023-01-251-12/+0
| | | | | | | | | | | | | | | | | | | | Upgrade to release 1.1.0: - The default casefolding method on Python 3 was changed from str.lower() to str.casefold(). This changes the matching of the case-insensitive keys. This shold normally be an improvement, but in case you find that you are negatively affected by this change, you can go back to the str.lower() method by overriding the NocaseDict.__casefold__() method with a method that calls str.lower(). - Added support for Python 3.11. - Changed the default casefolding method on Python 3 to be str.casefold() in order to improve Unicode support. On Python 2, it remains str.lower(). Added support for user-defined casefolding. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-nocasedict: Upgrade 1.0.3 -> 1.0.4Leon Anavi2022-08-131-0/+12
Upgrade to release 1.0.4: - Various bug fixes in dependencies and test environment Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>