We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e5ef90 commit 41842f9Copy full SHA for 41842f9
pyo3-ffi/src/cpython/mod.rs
@@ -31,7 +31,6 @@ pub(crate) mod pystate;
31
pub(crate) mod pythonrun;
32
// skipped sysmodule.h
33
pub(crate) mod floatobject;
34
-#[cfg(not(PyPy))]
35
pub(crate) mod pyframe;
36
pub(crate) mod tupleobject;
37
pub(crate) mod unicodeobject;
@@ -60,7 +59,7 @@ pub use self::object::*;
60
59
pub use self::objimpl::*;
61
pub use self::pydebug::*;
62
pub use self::pyerrors::*;
63
+#[cfg(Py_3_11)]
64
pub use self::pyframe::*;
65
#[cfg(all(Py_3_8, not(PyPy)))]
66
pub use self::pylifecycle::*;
@@ -69,4 +68,5 @@ pub use self::pystate::*;
69
68
pub use self::pythonrun::*;
70
pub use self::tupleobject::*;
71
pub use self::unicodeobject::*;
+#[cfg(not(PyPy))]
72
pub use self::weakrefobject::*;
0 commit comments