-
Notifications
You must be signed in to change notification settings - Fork 1.3k
rustpython-vm public API for rustpython-stdlib #3104
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
vm/src/builtins/mod.rs
Outdated
@@ -80,5 +80,9 @@ pub(crate) mod zip; | |||
pub use zip::PyZip; | |||
pub(crate) mod genericalias; | |||
|
|||
pub use super::exceptions::{PyBaseException, PyBaseExceptionRef}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In the view of public API, these types are not distinguishable with other built-in types
vm/src/lib.rs
Outdated
pub mod protocols { | ||
pub use super::buffer::{PyBuffer, PyBufferInternal}; | ||
pub use super::slots::PyIter; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
new module protocols
for python c-api protocols
dd84cd8
to
4541ce6
Compare
4541ce6
to
71101f6
Compare
71101f6
to
d1252c2
Compare
2552210
to
f9eedf5
Compare
e6c39ad
to
03d513f
Compare
03d513f
to
6035c59
Compare
6035c59
to
b8929e6
Compare
9d4e9ee
to
2b822ff
Compare
64f8c51
to
90cb222
Compare
merged as part of #3129 |
ref #3102