diff options
author | William S Fulton <wsf@fultondesigns.co.uk> | 2023-04-05 20:21:34 +0100 |
---|---|---|
committer | William S Fulton <wsf@fultondesigns.co.uk> | 2023-04-26 18:18:15 +0100 |
commit | b2fd91bc41050ec4dd8fbb13b71abb796bc6c8b7 (patch) | |
tree | 9c81d693d53c46a44a1afa59fc527df18556f535 /CHANGES.current | |
parent | 6098b26f3ece2096e14695fd02b040bd0658d2ac (diff) | |
download | swig-b2fd91bc41050ec4dd8fbb13b71abb796bc6c8b7.tar.gz |
Add support for all STL containers to be constructible from a Python set
Diffstat (limited to 'CHANGES.current')
-rw-r--r-- | CHANGES.current | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/CHANGES.current b/CHANGES.current index f7c95b320..90cfce74c 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.2.0 (in progress) =========================== +2023-04-05: wsfulton + [Python] #2515 Add support for all STL containers to be constructible from a Python set. + + The previous implementation used the Python Sequence Protocol to convert from Python types + to STL containers. The new implementation uses the Python Iterator Protocol instead and + thereby can convert from a Python set too. + 2023-03-25: alatina [Octave] #2512 Add support for Octave 8.1. |