From 3872890c1cdc67efd71abb3a1a588fb06d3f1edf Mon Sep 17 00:00:00 2001 From: William S Fulton Date: Mon, 24 Sep 2018 07:07:25 +0100 Subject: [PATCH] Add changes file entry for Python hash table implementation --- CHANGES.current | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGES.current b/CHANGES.current index 76b49d924..36712fe9f 100644 --- a/CHANGES.current +++ b/CHANGES.current @@ -7,6 +7,13 @@ the issue number to the end of the URL: https://github.com/swig/swig/issues/ Version 4.0.0 (in progress) =========================== +2018-09-24: wsfulton + [Python] #1319 C++11 hash tables implementation is finished now (including for -builtin): + std::unordered_map + std::unordered_set + std::unordered_multimap + std::unordered_multiset + 2018-09-21: wsfulton [Python] Fix when using -builtin and wrapping std::map, std::set, std::unordered_map or std::unordered_set to ensure __contains__ is called. This is a wrapper for the STL