Fix duplication
This commit is contained in:
parent
e4e7e6e51c
commit
a62930bd95
|
@ -29,10 +29,10 @@ struct MyClass { }
|
||||||
struct MyClass { }
|
struct MyClass { }
|
||||||
```
|
```
|
||||||
|
|
||||||
[params-1]: ../prelude/struct.PyAny.html
|
[params-1]: https://docs.rs/pyo3/latest/pyo3/struct.PyAny.html
|
||||||
[params-2]: https://en.wikipedia.org/wiki/Free_list
|
[params-2]: https://en.wikipedia.org/wiki/Free_list
|
||||||
[params-3]: std::marker::Send
|
[params-3]: https://doc.rust-lang.org/std/marker/trait.Send.html
|
||||||
[params-4]: std::rc::Rc
|
[params-4]: https://doc.rust-lang.org/std/rc/struct.Rc.html
|
||||||
[params-5]: std::sync::Arc
|
[params-5]: https://doc.rust-lang.org/std/sync/struct.Arc.html
|
||||||
[params-6]: https://docs.python.org/3/library/weakref.html
|
[params-6]: https://docs.python.org/3/library/weakref.html
|
||||||
[params-mapping]: https://pyo3.rs/latest/class/protocols.html#mapping--sequence-types
|
[params-mapping]: https://pyo3.rs/latest/class/protocols.html#mapping--sequence-types
|
|
@ -197,14 +197,6 @@ Python::with_gil(|py|{
|
||||||
|
|
||||||
{{#include ../pyclass_parameters.md}}
|
{{#include ../pyclass_parameters.md}}
|
||||||
|
|
||||||
[params-1]: {{#PYO3_DOCS_URL}}/pyo3/prelude/struct.PyAny.html
|
|
||||||
[params-2]: https://en.wikipedia.org/wiki/Free_list
|
|
||||||
[params-3]: https://doc.rust-lang.org/stable/std/marker/trait.Send.html
|
|
||||||
[params-4]: https://doc.rust-lang.org/stable/std/rc/struct.Rc.html
|
|
||||||
[params-5]: https://doc.rust-lang.org/stable/std/sync/struct.Rc.html
|
|
||||||
[params-6]: https://docs.python.org/3/library/weakref.html
|
|
||||||
[params-mapping]: ./class/protocols.md#mapping--sequence-types
|
|
||||||
|
|
||||||
These parameters are covered in various sections of this guide.
|
These parameters are covered in various sections of this guide.
|
||||||
|
|
||||||
### Return type
|
### Return type
|
||||||
|
|
Loading…
Reference in New Issue