fix: export new dict views types (#2590)
* fix: export new dict views types * fix exposed PyDictItems Co-authored-by: David Hewitt <1939362+davidhewitt@users.noreply.github.com> * add changelog entry Co-authored-by: David Hewitt <1939362+davidhewitt@users.noreply.github.com>
This commit is contained in:
parent
c28e919f0f
commit
611ecc15fa
|
@ -6,6 +6,12 @@ PyO3 versions, please see the [migration guide](https://pyo3.rs/latest/migration
|
|||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fix visibility of `PyDictItems`, `PyDictKeys`, and `PyDictValues` types added in PyO3 0.17.0.
|
||||
|
||||
## [0.17.0] - 2022-08-23
|
||||
|
||||
### Packaging
|
||||
|
|
|
@ -16,6 +16,8 @@ pub use self::datetime::{
|
|||
PyTzInfo, PyTzInfoAccess,
|
||||
};
|
||||
pub use self::dict::{IntoPyDict, PyDict};
|
||||
#[cfg(not(PyPy))]
|
||||
pub use self::dict::{PyDictItems, PyDictKeys, PyDictValues};
|
||||
pub use self::floatob::PyFloat;
|
||||
#[cfg(all(not(Py_LIMITED_API), not(PyPy)))]
|
||||
pub use self::frame::PyFrame;
|
||||
|
|
Loading…
Reference in New Issue