summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2018-12-30 10:54:34 -0500
committerAarni Koskela <akx@iki.fi>2019-01-25 12:50:05 +0200
commit60669579a7e3189112ce4ecb983928040af79e73 (patch)
treead37563b97554d7633bfe06927773ad2798c6901 /CHANGES
parente4d834d4c1bffe05e71ee2ec21449b6b0b115e99 (diff)
downloadbabel-60669579a7e3189112ce4ecb983928040af79e73.tar.gz
Replace odict with Python's collection.OrderedDict
The odict class duplicates collection.OrderedDict from Python's standard lib. Simplify the code by using builtin Python features. https://docs.python.org/3/library/collections.html#collections.OrderedDict
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES13
1 files changed, 13 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 6d9b0e5..622b4c5 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,19 @@
Babel Changelog
===============
+UNRELEASED
+----------
+
+Possibly incompatible changes
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+These may be backward incompatible in some cases, as some more-or-less internal
+APIs have changed. Please feel free to file issues if you bump into anything
+strange and we'll try to help!
+
+* General: Internal uses of ``babel.util.odict`` have been replaced with
+ ``collections.OrderedDict`` from The Python standard library.
+
Version 2.6.0
-------------