-
Notifications
You must be signed in to change notification settings - Fork 3
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
WIP: requester pays #81
base: main
Are you sure you want to change the base?
Conversation
// use pyo3::prelude::*; | ||
// use pyo3::types::PyDict; | ||
|
||
// #[pyfunction] | ||
// #[pyo3(signature = (**kwds))] | ||
// fn num_kwds(kwds: Option<&Bound<'_, PyDict>>) -> usize { | ||
// kwds.map_or(0, |dict| dict.len()) | ||
// } | ||
|
||
// #[pymodule] | ||
// fn module_with_functions(m: &Bound<'_, PyModule>) -> PyResult<()> { | ||
// m.add_function(wrap_pyfunction!(num_kwds, m)?) | ||
// } |
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.
delete
|
||
impl<'py> FromPyObject<'py> for PyHeaderName { | ||
fn extract_bound(ob: &Bound<'py, PyAny>) -> PyResult<Self> { | ||
// TODO: check that this works on both str and bytes input |
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.
This currently only works on bytes
Made an upstream issue in arrow-rs: apache/arrow-rs#6716 |
The upstream PR was now merged! apache/arrow-rs#6768 (comment) |
This is failing with
We should open an issue in
object_store
Closes #76