don't require Py_3_8 for ffi::cpython

Some functions available in earlier versions were moved to this
directory, but are still valid.
This commit is contained in:
Nicholas Sim 2021-02-19 20:01:48 +08:00 committed by David Hewitt
parent 13bfbd38b4
commit ec894e3a33
1 changed files with 1 additions and 1 deletions

View File

@ -209,5 +209,5 @@ mod pystrtod; // TODO supports PEP-384 only; needs adjustment for Python 3.3 and
// Additional headers that are not exported by Python.h
pub mod structmember; // TODO supports PEP-384 only; needs adjustment for Python 3.3 and 3.5
#[cfg(all(Py_3_8, not(Py_LIMITED_API)))]
#[cfg(not(Py_LIMITED_API))]
mod cpython;