rust-cpython v0.4.0 Release Notes

Release Date: 2020-01-27 // about 4 years ago
    • 👍 The 0.4.x series is planned to be the last that will support Rust 2015.
    • ➕ Added Python 3.8 support.
    • Type errors during downcasts now explain what the expected and actual types are. (PR by [@markbt])
    • Data items can now be shared between Python objects (e.g. for iterators) using PySharedRef. (PR by @yuja)
    • PyList can now be appended to with append. The method for inserting items is renamed to insert for consistency. (PR by @binh-vu)