From 9146b62d313e28f30016d59cb32376757ba0166c Mon Sep 17 00:00:00 2001 From: hugovk Date: Tue, 17 Oct 2017 20:29:33 +0300 Subject: [PATCH] OrderedDict no longer in compat.py as it's in collections in Py2.7+ --- 3.0-HISTORY.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/3.0-HISTORY.rst b/3.0-HISTORY.rst index 31df0ca0..4c4c84df 100644 --- a/3.0-HISTORY.rst +++ b/3.0-HISTORY.rst @@ -3,6 +3,9 @@ - Support for Python 2.6 has been dropped. + - The ``OrderedDict`` import no longer exists in compat.py because it is part + of ``collections`` in Python 2.7 and newer. + - Simplified logic for determining Content-Length and Transfer-Encoding. Requests will now avoid setting both headers on the same request, and raise an exception if this is done manually by a user.