Apply suggestions from review
Co-authored-by: Nicholas Sim <nsim+github@posteo.net>
This commit is contained in:
parent
d0145bb4ee
commit
2ada44b7e0
|
@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
||||||
### Added
|
### Added
|
||||||
- Add unsafe API `with_embedded_python_interpreter` to initalize a Python interpreter, execute a closure, and finalize the interpreter. [#1355](https://github.com/PyO3/pyo3/pull/1355)
|
- Add unsafe API `with_embedded_python_interpreter` to initalize a Python interpreter, execute a closure, and finalize the interpreter. [#1355](https://github.com/PyO3/pyo3/pull/1355)
|
||||||
- Add `serde` feature to support `Serialize/Deserialize` for `Py<T>`. [#1366](https://github.com/PyO3/pyo3/pull/1366)
|
- Add `serde` feature to support `Serialize/Deserialize` for `Py<T>`. [#1366](https://github.com/PyO3/pyo3/pull/1366)
|
||||||
- Define `_PyCFunctionFastWithKeywords()` on CPython 3.7+. [#1384](https://github.com/PyO3/pyo3/pull/1384)
|
- Add FFI definition `_PyCFunctionFastWithKeywords` on Python 3.7 and up. [#1384](https://github.com/PyO3/pyo3/pull/1384)
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- `prepare_freethreaded_python` will no longer register an `atexit` handler to call `Py_Finalize`. [#1355](https://github.com/PyO3/pyo3/pull/1355)
|
- `prepare_freethreaded_python` will no longer register an `atexit` handler to call `Py_Finalize`. [#1355](https://github.com/PyO3/pyo3/pull/1355)
|
||||||
|
|
|
@ -30,7 +30,7 @@ pub type PyCFunctionWithKeywords = unsafe extern "C" fn(
|
||||||
kwds: *mut PyObject,
|
kwds: *mut PyObject,
|
||||||
) -> *mut PyObject;
|
) -> *mut PyObject;
|
||||||
|
|
||||||
#[cfg(all(Py_3_7, not(Py_LIMITED_API)))]
|
#[cfg(Py_3_7)]
|
||||||
pub type _PyCFunctionFastWithKeywords = unsafe extern "C" fn(
|
pub type _PyCFunctionFastWithKeywords = unsafe extern "C" fn(
|
||||||
slf: *mut PyObject,
|
slf: *mut PyObject,
|
||||||
args: *const *mut PyObject,
|
args: *const *mut PyObject,
|
||||||
|
|
Loading…
Reference in New Issue