diff --git a/test-crates/lib_with_path_dep/Cargo.lock b/test-crates/lib_with_path_dep/Cargo.lock new file mode 100644 index 000000000..0a32d0c72 --- /dev/null +++ b/test-crates/lib_with_path_dep/Cargo.lock @@ -0,0 +1,183 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "autocfg" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" + +[[package]] +name = "cfg-if" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" + +[[package]] +name = "heck" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" + +[[package]] +name = "indoc" +version = "2.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5" + +[[package]] +name = "lib_with_path_dep" +version = "0.1.0" +dependencies = [ + "pyo3", + "some_path_dep", +] + +[[package]] +name = "libc" +version = "0.2.164" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "433bfe06b8c75da9b2e3fbea6e5329ff87748f0b144ef75306e674c3f6f7c13f" + +[[package]] +name = "memoffset" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" +dependencies = [ + "autocfg", +] + +[[package]] +name = "once_cell" +version = "1.20.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775" + +[[package]] +name = "portable-atomic" +version = "1.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "280dc24453071f1b63954171985a0b0d30058d287960968b9b2aca264c8d4ee6" + +[[package]] +name = "proc-macro2" +version = "1.0.92" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "pyo3" +version = "0.23.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7ebb0c0cc0de9678e53be9ccf8a2ab53045e6e3a8be03393ceccc5e7396ccb40" +dependencies = [ + "cfg-if", + "indoc", + "libc", + "memoffset", + "once_cell", + "portable-atomic", + "pyo3-build-config", + "pyo3-ffi", + "pyo3-macros", + "unindent", +] + +[[package]] +name = "pyo3-build-config" +version = "0.23.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "80e3ce69c4ec34476534b490e412b871ba03a82e35604c3dfb95fcb6bfb60c09" +dependencies = [ + "once_cell", + "target-lexicon", +] + +[[package]] +name = "pyo3-ffi" +version = "0.23.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b09f311c76b36dfd6dd6f7fa6f9f18e7e46a1c937110d283e80b12ba2468a75" +dependencies = [ + "libc", + "pyo3-build-config", +] + +[[package]] +name = "pyo3-macros" +version = "0.23.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fd4f74086536d1e1deaff99ec0387481fb3325c82e4e48be0e75ab3d3fcb487a" +dependencies = [ + "proc-macro2", + "pyo3-macros-backend", + "quote", + "syn", +] + +[[package]] +name = "pyo3-macros-backend" +version = "0.23.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9e77dfeb76b32bbf069144a5ea0a36176ab59c8db9ce28732d0f06f096bbfbc8" +dependencies = [ + "heck", + "proc-macro2", + "pyo3-build-config", + "quote", + "syn", +] + +[[package]] +name = "quote" +version = "1.0.37" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "some_path_dep" +version = "0.1.0" +dependencies = [ + "transitive_path_dep", +] + +[[package]] +name = "syn" +version = "2.0.89" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "44d46482f1c1c87acd84dea20c1bf5ebff4c757009ed6bf19cfd36fb10e92c4e" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "target-lexicon" +version = "0.12.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1" + +[[package]] +name = "transitive_path_dep" +version = "0.1.0" + +[[package]] +name = "unicode-ident" +version = "1.0.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83" + +[[package]] +name = "unindent" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce" diff --git a/test-crates/lib_with_path_dep/Cargo.toml b/test-crates/lib_with_path_dep/Cargo.toml index 250ca6c23..5f4581642 100644 --- a/test-crates/lib_with_path_dep/Cargo.toml +++ b/test-crates/lib_with_path_dep/Cargo.toml @@ -8,6 +8,5 @@ edition = "2021" crate-type = ["cdylib"] [dependencies] -# Don't use the macros feature, which makes compilation much faster -pyo3 = { version = "0.23.1", default-features = false, features = ["extension-module"] } +pyo3 = { version = "0.23.1", features = ["extension-module"] } some_path_dep = { path = "../some_path_dep" } diff --git a/test-crates/lib_with_path_dep/src/lib.rs b/test-crates/lib_with_path_dep/src/lib.rs index 1a17f92ad..eb9078dcd 100644 --- a/test-crates/lib_with_path_dep/src/lib.rs +++ b/test-crates/lib_with_path_dep/src/lib.rs @@ -1,139 +1,14 @@ -/// We speed up compilation by using the expanded output and then deselecting the macro feature -/// of pyo3, removing syn and proc macros from the dependencies use pyo3::prelude::*; +#[pyfunction] fn add(x: usize, y: usize) -> usize { let sum = some_path_dep::add(x, y); debug_assert!(some_path_dep::is_sum(x, y, sum)); sum } -unsafe extern "C" fn __pyo3_raw_add( - _slf: *mut pyo3::ffi::PyObject, - _args: *mut pyo3::ffi::PyObject, - _kwargs: *mut pyo3::ffi::PyObject, -) -> *mut pyo3::ffi::PyObject { - const _LOCATION: &'static str = "add()"; - - let pool = ::pyo3::GILPool::new(); - let unwind_safe_py = std::panic::AssertUnwindSafe(pool.python()); - let result = match std::panic::catch_unwind(move || -> ::pyo3::PyResult<_> { - let _py = *unwind_safe_py; - ::pyo3::callback::convert(_py, { - let _args = _py.from_borrowed_ptr::(_args); - let _kwargs: Option<&pyo3::types::PyDict> = _py.from_borrowed_ptr_or_opt(_kwargs); - { - const PARAMS: &'static [pyo3::derive_utils::ParamDescription] = &[ - pyo3::derive_utils::ParamDescription { - name: "x", - is_optional: false, - kw_only: false, - }, - pyo3::derive_utils::ParamDescription { - name: "y", - is_optional: false, - kw_only: false, - }, - ]; - let mut output = [None; 2usize]; - let mut _args = _args; - let mut _kwargs = _kwargs; - let (_args, _kwargs) = pyo3::derive_utils::parse_fn_args( - Some(_LOCATION), - PARAMS, - _args, - _kwargs, - false, - false, - &mut output, - )?; - let arg0 = match output[0usize] { - Some(_obj) => _obj - .extract() - .map_err(|e| pyo3::derive_utils::argument_extraction_error(_py, "x", e))?, - None => { - panic!("Failed to extract required method argument") - } - }; - let arg1 = match output[1usize] { - Some(_obj) => _obj - .extract() - .map_err(|e| pyo3::derive_utils::argument_extraction_error(_py, "y", e))?, - None => { - panic!("Failed to extract required method argument") - } - }; - add(arg0, arg1) - } - }) - }) { - Ok(result) => result, - Err(e) => { - if let Some(string) = e.downcast_ref::() { - Err(::pyo3::panic::PanicException::new_err((string.clone(),))) - } else if let Some(s) = e.downcast_ref::<&str>() { - Err(::pyo3::panic::PanicException::new_err((s.to_string(),))) - } else { - Err(::pyo3::panic::PanicException::new_err(( - "panic from Rust code", - ))) - } - } - }; - result.unwrap_or_else(|e| { - e.restore(pool.python()); - ::pyo3::callback::callback_error() - }) -} -pub(crate) fn __pyo3_get_function_add<'a>( - args: impl Into>, -) -> pyo3::PyResult<&'a pyo3::types::PyCFunction> { - let name = "add\u{0}"; - let name = std::ffi::CStr::from_bytes_with_nul(name.as_bytes()).unwrap(); - let doc = std::ffi::CStr::from_bytes_with_nul(b"\x00").unwrap(); - pyo3::types::PyCFunction::internal_new( - name, - doc, - pyo3::class::PyMethodType::PyCFunctionWithKeywords(__pyo3_raw_add), - pyo3::ffi::METH_VARARGS | pyo3::ffi::METH_KEYWORDS, - args.into(), - ) -} - -fn pyo3_pure(m: &Bound<'_, PyModule>) -> PyResult<()> { - m.add_wrapped(&__pyo3_get_function_add)?; +#[pymodule] +fn lib_with_path_dep(m: &Bound<'_, PyModule>) -> PyResult<()> { + m.add_wrapped(wrap_pyfunction!(add))?; Ok(()) } - -#[no_mangle] -#[allow(non_snake_case)] -#[doc = r" This autogenerated function is called by the python interpreter when importing"] -#[doc = r" the module."] -pub unsafe extern "C" fn PyInit_lib_with_path_dep() -> *mut pyo3::ffi::PyObject { - use pyo3::derive_utils::ModuleDef; - const NAME: &'static str = "pyo3_pure\u{0}"; - static MODULE_DEF: ModuleDef = unsafe { ModuleDef::new(NAME) }; - let pool = ::pyo3::GILPool::new(); - let unwind_safe_py = std::panic::AssertUnwindSafe(pool.python()); - let result = match std::panic::catch_unwind(move || -> ::pyo3::PyResult<_> { - let _py = *unwind_safe_py; - ::pyo3::callback::convert(_py, MODULE_DEF.make_module("", pyo3_pure)) - }) { - Ok(result) => result, - Err(e) => { - if let Some(string) = e.downcast_ref::() { - Err(::pyo3::panic::PanicException::new_err((string.clone(),))) - } else if let Some(s) = e.downcast_ref::<&str>() { - Err(::pyo3::panic::PanicException::new_err((s.to_string(),))) - } else { - Err(::pyo3::panic::PanicException::new_err(( - "panic from Rust code", - ))) - } - } - }; - result.unwrap_or_else(|e| { - e.restore(pool.python()); - ::pyo3::callback::callback_error() - }) -} diff --git a/test-crates/sdist_with_path_dep/Cargo.lock b/test-crates/sdist_with_path_dep/Cargo.lock index c7fe3c15b..697dc9c9c 100644 --- a/test-crates/sdist_with_path_dep/Cargo.lock +++ b/test-crates/sdist_with_path_dep/Cargo.lock @@ -14,6 +14,18 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" +[[package]] +name = "heck" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" + +[[package]] +name = "indoc" +version = "2.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5" + [[package]] name = "libc" version = "0.2.147" @@ -41,6 +53,15 @@ version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0" +[[package]] +name = "proc-macro2" +version = "1.0.92" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0" +dependencies = [ + "unicode-ident", +] + [[package]] name = "pyo3" version = "0.23.1" @@ -48,12 +69,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7ebb0c0cc0de9678e53be9ccf8a2ab53045e6e3a8be03393ceccc5e7396ccb40" dependencies = [ "cfg-if", + "indoc", "libc", "memoffset", "once_cell", "portable-atomic", "pyo3-build-config", "pyo3-ffi", + "pyo3-macros", + "unindent", ] [[package]] @@ -76,6 +100,40 @@ dependencies = [ "pyo3-build-config", ] +[[package]] +name = "pyo3-macros" +version = "0.23.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fd4f74086536d1e1deaff99ec0387481fb3325c82e4e48be0e75ab3d3fcb487a" +dependencies = [ + "proc-macro2", + "pyo3-macros-backend", + "quote", + "syn", +] + +[[package]] +name = "pyo3-macros-backend" +version = "0.23.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9e77dfeb76b32bbf069144a5ea0a36176ab59c8db9ce28732d0f06f096bbfbc8" +dependencies = [ + "heck", + "proc-macro2", + "pyo3-build-config", + "quote", + "syn", +] + +[[package]] +name = "quote" +version = "1.0.37" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" +dependencies = [ + "proc-macro2", +] + [[package]] name = "sdist_with_path_dep" version = "0.1.0" @@ -91,6 +149,17 @@ dependencies = [ "transitive_path_dep", ] +[[package]] +name = "syn" +version = "2.0.89" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "44d46482f1c1c87acd84dea20c1bf5ebff4c757009ed6bf19cfd36fb10e92c4e" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + [[package]] name = "target-lexicon" version = "0.12.14" @@ -100,3 +169,15 @@ checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f" [[package]] name = "transitive_path_dep" version = "0.1.0" + +[[package]] +name = "unicode-ident" +version = "1.0.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83" + +[[package]] +name = "unindent" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce" diff --git a/test-crates/sdist_with_path_dep/Cargo.toml b/test-crates/sdist_with_path_dep/Cargo.toml index ac28c70a9..97ada77f8 100644 --- a/test-crates/sdist_with_path_dep/Cargo.toml +++ b/test-crates/sdist_with_path_dep/Cargo.toml @@ -8,6 +8,5 @@ edition = "2021" crate-type = ["cdylib"] [dependencies] -# Don't use the macros feature, which makes compilation much faster -pyo3 = { version = "0.23.1", default-features = false, features = ["extension-module"] } +pyo3 = { version = "0.23.1", features = ["extension-module"] } some_path_dep = { path = "../some_path_dep" } diff --git a/test-crates/sdist_with_path_dep/src/lib.rs b/test-crates/sdist_with_path_dep/src/lib.rs index 338d3a297..1f53ecfbb 100644 --- a/test-crates/sdist_with_path_dep/src/lib.rs +++ b/test-crates/sdist_with_path_dep/src/lib.rs @@ -1,139 +1,14 @@ -/// We speed up compilation by using the expanded output and then deselecting the macro feature -/// of pyo3, removing syn and proc macros from the dependencies use pyo3::prelude::*; +#[pyfunction] fn add(x: usize, y: usize) -> usize { let sum = some_path_dep::add(x, y); debug_assert!(some_path_dep::is_sum(x, y, sum)); sum } -unsafe extern "C" fn __pyo3_raw_add( - _slf: *mut pyo3::ffi::PyObject, - _args: *mut pyo3::ffi::PyObject, - _kwargs: *mut pyo3::ffi::PyObject, -) -> *mut pyo3::ffi::PyObject { - const _LOCATION: &'static str = "add()"; - - let pool = ::pyo3::GILPool::new(); - let unwind_safe_py = std::panic::AssertUnwindSafe(pool.python()); - let result = match std::panic::catch_unwind(move || -> ::pyo3::PyResult<_> { - let _py = *unwind_safe_py; - ::pyo3::callback::convert(_py, { - let _args = _py.from_borrowed_ptr::(_args); - let _kwargs: Option<&pyo3::types::PyDict> = _py.from_borrowed_ptr_or_opt(_kwargs); - { - const PARAMS: &'static [pyo3::derive_utils::ParamDescription] = &[ - pyo3::derive_utils::ParamDescription { - name: "x", - is_optional: false, - kw_only: false, - }, - pyo3::derive_utils::ParamDescription { - name: "y", - is_optional: false, - kw_only: false, - }, - ]; - let mut output = [None; 2usize]; - let mut _args = _args; - let mut _kwargs = _kwargs; - let (_args, _kwargs) = pyo3::derive_utils::parse_fn_args( - Some(_LOCATION), - PARAMS, - _args, - _kwargs, - false, - false, - &mut output, - )?; - let arg0 = match output[0usize] { - Some(_obj) => _obj - .extract() - .map_err(|e| pyo3::derive_utils::argument_extraction_error(_py, "x", e))?, - None => { - panic!("Failed to extract required method argument") - } - }; - let arg1 = match output[1usize] { - Some(_obj) => _obj - .extract() - .map_err(|e| pyo3::derive_utils::argument_extraction_error(_py, "y", e))?, - None => { - panic!("Failed to extract required method argument") - } - }; - add(arg0, arg1) - } - }) - }) { - Ok(result) => result, - Err(e) => { - if let Some(string) = e.downcast_ref::() { - Err(::pyo3::panic::PanicException::new_err((string.clone(),))) - } else if let Some(s) = e.downcast_ref::<&str>() { - Err(::pyo3::panic::PanicException::new_err((s.to_string(),))) - } else { - Err(::pyo3::panic::PanicException::new_err(( - "panic from Rust code", - ))) - } - } - }; - result.unwrap_or_else(|e| { - e.restore(pool.python()); - ::pyo3::callback::callback_error() - }) -} -pub(crate) fn __pyo3_get_function_add<'a>( - args: impl Into>, -) -> pyo3::PyResult<&'a pyo3::types::PyCFunction> { - let name = "add\u{0}"; - let name = std::ffi::CStr::from_bytes_with_nul(name.as_bytes()).unwrap(); - let doc = std::ffi::CStr::from_bytes_with_nul(b"\x00").unwrap(); - pyo3::types::PyCFunction::internal_new( - name, - doc, - pyo3::class::PyMethodType::PyCFunctionWithKeywords(__pyo3_raw_add), - pyo3::ffi::METH_VARARGS | pyo3::ffi::METH_KEYWORDS, - args.into(), - ) -} - -fn pyo3_pure(m: &Bound<'_, PyModule>) -> PyResult<()> { - m.add_wrapped(&__pyo3_get_function_add)?; +#[pymodule] +fn sdist_with_path_dep(m: &Bound<'_, PyModule>) -> PyResult<()> { + m.add_wrapped(wrap_pyfunction!(add))?; Ok(()) } - -#[no_mangle] -#[allow(non_snake_case)] -#[doc = r" This autogenerated function is called by the python interpreter when importing"] -#[doc = r" the module."] -pub unsafe extern "C" fn PyInit_sdist_with_path_dep() -> *mut pyo3::ffi::PyObject { - use pyo3::derive_utils::ModuleDef; - const NAME: &'static str = "pyo3_pure\u{0}"; - static MODULE_DEF: ModuleDef = unsafe { ModuleDef::new(NAME) }; - let pool = ::pyo3::GILPool::new(); - let unwind_safe_py = std::panic::AssertUnwindSafe(pool.python()); - let result = match std::panic::catch_unwind(move || -> ::pyo3::PyResult<_> { - let _py = *unwind_safe_py; - ::pyo3::callback::convert(_py, MODULE_DEF.make_module("", pyo3_pure)) - }) { - Ok(result) => result, - Err(e) => { - if let Some(string) = e.downcast_ref::() { - Err(::pyo3::panic::PanicException::new_err((string.clone(),))) - } else if let Some(s) = e.downcast_ref::<&str>() { - Err(::pyo3::panic::PanicException::new_err((s.to_string(),))) - } else { - Err(::pyo3::panic::PanicException::new_err(( - "panic from Rust code", - ))) - } - } - }; - result.unwrap_or_else(|e| { - e.restore(pool.python()); - ::pyo3::callback::callback_error() - }) -} diff --git a/test-crates/sdist_with_target_path_dep/Cargo.lock b/test-crates/sdist_with_target_path_dep/Cargo.lock index e2b30faf0..b61caf139 100644 --- a/test-crates/sdist_with_target_path_dep/Cargo.lock +++ b/test-crates/sdist_with_target_path_dep/Cargo.lock @@ -14,6 +14,18 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" +[[package]] +name = "heck" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" + +[[package]] +name = "indoc" +version = "2.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5" + [[package]] name = "libc" version = "0.2.147" @@ -41,6 +53,15 @@ version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0" +[[package]] +name = "proc-macro2" +version = "1.0.92" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0" +dependencies = [ + "unicode-ident", +] + [[package]] name = "pyo3" version = "0.23.1" @@ -48,12 +69,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7ebb0c0cc0de9678e53be9ccf8a2ab53045e6e3a8be03393ceccc5e7396ccb40" dependencies = [ "cfg-if", + "indoc", "libc", "memoffset", "once_cell", "portable-atomic", "pyo3-build-config", "pyo3-ffi", + "pyo3-macros", + "unindent", ] [[package]] @@ -76,6 +100,40 @@ dependencies = [ "pyo3-build-config", ] +[[package]] +name = "pyo3-macros" +version = "0.23.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fd4f74086536d1e1deaff99ec0387481fb3325c82e4e48be0e75ab3d3fcb487a" +dependencies = [ + "proc-macro2", + "pyo3-macros-backend", + "quote", + "syn", +] + +[[package]] +name = "pyo3-macros-backend" +version = "0.23.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9e77dfeb76b32bbf069144a5ea0a36176ab59c8db9ce28732d0f06f096bbfbc8" +dependencies = [ + "heck", + "proc-macro2", + "pyo3-build-config", + "quote", + "syn", +] + +[[package]] +name = "quote" +version = "1.0.37" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" +dependencies = [ + "proc-macro2", +] + [[package]] name = "sdist_with_target_path_dep" version = "0.1.0" @@ -91,6 +149,17 @@ dependencies = [ "transitive_path_dep", ] +[[package]] +name = "syn" +version = "2.0.89" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "44d46482f1c1c87acd84dea20c1bf5ebff4c757009ed6bf19cfd36fb10e92c4e" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + [[package]] name = "target-lexicon" version = "0.12.14" @@ -100,3 +169,15 @@ checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f" [[package]] name = "transitive_path_dep" version = "0.1.0" + +[[package]] +name = "unicode-ident" +version = "1.0.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83" + +[[package]] +name = "unindent" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce" diff --git a/test-crates/sdist_with_target_path_dep/Cargo.toml b/test-crates/sdist_with_target_path_dep/Cargo.toml index 945e2994e..478d7f18c 100644 --- a/test-crates/sdist_with_target_path_dep/Cargo.toml +++ b/test-crates/sdist_with_target_path_dep/Cargo.toml @@ -8,8 +8,7 @@ edition = "2021" crate-type = ["cdylib"] [dependencies] -# Don't use the macros feature, which makes compilation much faster -pyo3 = { version = "0.23.1", default-features = false, features = ["extension-module"] } +pyo3 = { version = "0.23.1", features = ["extension-module"] } [target.'cfg(not(target_endian = "all-over-the-place"))'.dependencies] some_path_dep = { path = "../some_path_dep" } diff --git a/test-crates/sdist_with_target_path_dep/src/lib.rs b/test-crates/sdist_with_target_path_dep/src/lib.rs index 338d3a297..6eaa6d2bd 100644 --- a/test-crates/sdist_with_target_path_dep/src/lib.rs +++ b/test-crates/sdist_with_target_path_dep/src/lib.rs @@ -1,139 +1,14 @@ -/// We speed up compilation by using the expanded output and then deselecting the macro feature -/// of pyo3, removing syn and proc macros from the dependencies use pyo3::prelude::*; +#[pyfunction] fn add(x: usize, y: usize) -> usize { let sum = some_path_dep::add(x, y); debug_assert!(some_path_dep::is_sum(x, y, sum)); sum } -unsafe extern "C" fn __pyo3_raw_add( - _slf: *mut pyo3::ffi::PyObject, - _args: *mut pyo3::ffi::PyObject, - _kwargs: *mut pyo3::ffi::PyObject, -) -> *mut pyo3::ffi::PyObject { - const _LOCATION: &'static str = "add()"; - - let pool = ::pyo3::GILPool::new(); - let unwind_safe_py = std::panic::AssertUnwindSafe(pool.python()); - let result = match std::panic::catch_unwind(move || -> ::pyo3::PyResult<_> { - let _py = *unwind_safe_py; - ::pyo3::callback::convert(_py, { - let _args = _py.from_borrowed_ptr::(_args); - let _kwargs: Option<&pyo3::types::PyDict> = _py.from_borrowed_ptr_or_opt(_kwargs); - { - const PARAMS: &'static [pyo3::derive_utils::ParamDescription] = &[ - pyo3::derive_utils::ParamDescription { - name: "x", - is_optional: false, - kw_only: false, - }, - pyo3::derive_utils::ParamDescription { - name: "y", - is_optional: false, - kw_only: false, - }, - ]; - let mut output = [None; 2usize]; - let mut _args = _args; - let mut _kwargs = _kwargs; - let (_args, _kwargs) = pyo3::derive_utils::parse_fn_args( - Some(_LOCATION), - PARAMS, - _args, - _kwargs, - false, - false, - &mut output, - )?; - let arg0 = match output[0usize] { - Some(_obj) => _obj - .extract() - .map_err(|e| pyo3::derive_utils::argument_extraction_error(_py, "x", e))?, - None => { - panic!("Failed to extract required method argument") - } - }; - let arg1 = match output[1usize] { - Some(_obj) => _obj - .extract() - .map_err(|e| pyo3::derive_utils::argument_extraction_error(_py, "y", e))?, - None => { - panic!("Failed to extract required method argument") - } - }; - add(arg0, arg1) - } - }) - }) { - Ok(result) => result, - Err(e) => { - if let Some(string) = e.downcast_ref::() { - Err(::pyo3::panic::PanicException::new_err((string.clone(),))) - } else if let Some(s) = e.downcast_ref::<&str>() { - Err(::pyo3::panic::PanicException::new_err((s.to_string(),))) - } else { - Err(::pyo3::panic::PanicException::new_err(( - "panic from Rust code", - ))) - } - } - }; - result.unwrap_or_else(|e| { - e.restore(pool.python()); - ::pyo3::callback::callback_error() - }) -} -pub(crate) fn __pyo3_get_function_add<'a>( - args: impl Into>, -) -> pyo3::PyResult<&'a pyo3::types::PyCFunction> { - let name = "add\u{0}"; - let name = std::ffi::CStr::from_bytes_with_nul(name.as_bytes()).unwrap(); - let doc = std::ffi::CStr::from_bytes_with_nul(b"\x00").unwrap(); - pyo3::types::PyCFunction::internal_new( - name, - doc, - pyo3::class::PyMethodType::PyCFunctionWithKeywords(__pyo3_raw_add), - pyo3::ffi::METH_VARARGS | pyo3::ffi::METH_KEYWORDS, - args.into(), - ) -} - -fn pyo3_pure(m: &Bound<'_, PyModule>) -> PyResult<()> { - m.add_wrapped(&__pyo3_get_function_add)?; +#[pymodule] +fn sdist_with_target_path_dep(m: &Bound<'_, PyModule>) -> PyResult<()> { + m.add_wrapped(wrap_pyfunction!(add))?; Ok(()) } - -#[no_mangle] -#[allow(non_snake_case)] -#[doc = r" This autogenerated function is called by the python interpreter when importing"] -#[doc = r" the module."] -pub unsafe extern "C" fn PyInit_sdist_with_path_dep() -> *mut pyo3::ffi::PyObject { - use pyo3::derive_utils::ModuleDef; - const NAME: &'static str = "pyo3_pure\u{0}"; - static MODULE_DEF: ModuleDef = unsafe { ModuleDef::new(NAME) }; - let pool = ::pyo3::GILPool::new(); - let unwind_safe_py = std::panic::AssertUnwindSafe(pool.python()); - let result = match std::panic::catch_unwind(move || -> ::pyo3::PyResult<_> { - let _py = *unwind_safe_py; - ::pyo3::callback::convert(_py, MODULE_DEF.make_module("", pyo3_pure)) - }) { - Ok(result) => result, - Err(e) => { - if let Some(string) = e.downcast_ref::() { - Err(::pyo3::panic::PanicException::new_err((string.clone(),))) - } else if let Some(s) = e.downcast_ref::<&str>() { - Err(::pyo3::panic::PanicException::new_err((s.to_string(),))) - } else { - Err(::pyo3::panic::PanicException::new_err(( - "panic from Rust code", - ))) - } - } - }; - result.unwrap_or_else(|e| { - e.restore(pool.python()); - ::pyo3::callback::callback_error() - }) -}