pyo3/tests/ui/invalid_pymethods.stderr

115 lines
3.5 KiB
Plaintext
Raw Normal View History

error: class attribute methods cannot take arguments
--> tests/ui/invalid_pymethods.rs:9:29
|
9 | fn class_attr_with_args(foo: i32) {}
| ^^^
error: `#[classattr]` does not take any arguments
--> tests/ui/invalid_pymethods.rs:14:5
|
14 | #[classattr(foobar)]
| ^
error: static method needs #[staticmethod] attribute
--> tests/ui/invalid_pymethods.rs:20:5
|
20 | fn staticmethod_without_attribute() {}
| ^^
2021-03-09 23:37:01 +00:00
error: unexpected receiver
--> tests/ui/invalid_pymethods.rs:26:35
|
26 | fn staticmethod_with_receiver(&self) {}
| ^
error: expected receiver for #[getter]
--> tests/ui/invalid_pymethods.rs:39:5
|
39 | fn getter_without_receiver() {}
| ^^
error: expected receiver for #[setter]
--> tests/ui/invalid_pymethods.rs:45:5
|
45 | fn setter_without_receiver() {}
| ^^
error: text_signature not allowed on __new__; if you want to add a signature on __new__, put it on the struct definition instead
--> tests/ui/invalid_pymethods.rs:51:12
|
51 | #[pyo3(text_signature = "()")]
| ^^^^^^^^^^^^^^
2021-10-23 20:32:39 +00:00
error: `text_signature` cannot be used with `__call__`
--> tests/ui/invalid_pymethods.rs:57:12
|
57 | #[pyo3(text_signature = "()")]
| ^^^^^^^^^^^^^^
error: text_signature not allowed with this method type
2021-10-23 20:32:39 +00:00
--> tests/ui/invalid_pymethods.rs:64:12
|
2021-10-23 20:32:39 +00:00
64 | #[pyo3(text_signature = "()")]
| ^^^^^^^^^^^^^^
error: text_signature not allowed with this method type
2021-10-23 20:32:39 +00:00
--> tests/ui/invalid_pymethods.rs:71:12
|
2021-10-23 20:32:39 +00:00
71 | #[pyo3(text_signature = "()")]
| ^^^^^^^^^^^^^^
error: text_signature not allowed with this method type
2021-10-23 20:32:39 +00:00
--> tests/ui/invalid_pymethods.rs:78:12
|
2021-10-23 20:32:39 +00:00
78 | #[pyo3(text_signature = "()")]
| ^^^^^^^^^^^^^^
error: cannot specify a second method type
2021-10-23 20:32:39 +00:00
--> tests/ui/invalid_pymethods.rs:85:7
|
2021-10-23 20:32:39 +00:00
85 | #[staticmethod]
| ^^^^^^^^^^^^
2021-03-09 23:37:01 +00:00
error: Python functions cannot have generic type parameters
2021-10-23 20:32:39 +00:00
--> tests/ui/invalid_pymethods.rs:91:23
2021-03-09 23:37:01 +00:00
|
2021-10-23 20:32:39 +00:00
91 | fn generic_method<T>(value: T) {}
2021-03-09 23:37:01 +00:00
| ^
error: Python functions cannot have `impl Trait` arguments
2021-10-23 20:32:39 +00:00
--> tests/ui/invalid_pymethods.rs:97:48
2021-03-09 23:37:01 +00:00
|
2021-10-23 20:32:39 +00:00
97 | fn impl_trait_method_first_arg(impl_trait: impl AsRef<PyAny>) {}
2021-03-09 23:37:01 +00:00
| ^^^^
error: Python functions cannot have `impl Trait` arguments
2021-10-23 20:32:39 +00:00
--> tests/ui/invalid_pymethods.rs:102:56
|
2021-10-23 20:32:39 +00:00
102 | fn impl_trait_method_second_arg(&self, impl_trait: impl AsRef<PyAny>) {}
| ^^^^
error: `async fn` is not yet supported for Python functions.
2022-01-13 21:25:23 +00:00
Additional crates such as `pyo3-asyncio` can be used to integrate async Rust and Python. For more information, see https://github.com/PyO3/pyo3/issues/1632
2021-10-23 20:32:39 +00:00
--> tests/ui/invalid_pymethods.rs:107:5
|
2021-10-23 20:32:39 +00:00
107 | async fn async_method(&self) {}
| ^^^^^
error: `pass_module` cannot be used on Python methods
2021-10-23 20:32:39 +00:00
--> tests/ui/invalid_pymethods.rs:112:12
|
2021-10-23 20:32:39 +00:00
112 | #[pyo3(pass_module)]
| ^^^^^^^^^^^
2022-02-08 23:44:23 +00:00
error[E0592]: duplicate definitions with name `__pymethod__new__`
--> tests/ui/invalid_pymethods.rs:124:1
|
124 | #[pymethods]
| ^^^^^^^^^^^^
| |
| duplicate definitions for `__pymethod__new__`
| other definition for `__pymethod__new__`
|
= note: this error originates in the attribute macro `pymethods` (in Nightly builds, run with -Z macro-backtrace for more info)