From 9bee88dc93eeeb7ab0b97d36b93c4495af3ee7f9 Mon Sep 17 00:00:00 2001 From: Tamme Dittrich Date: Thu, 24 Oct 2024 09:39:44 +0200 Subject: [PATCH] Fix broken link in Rust for Python --- book/src/rust-from-python.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/book/src/rust-from-python.md b/book/src/rust-from-python.md index 0941cc1..6fcb10c 100644 --- a/book/src/rust-from-python.md +++ b/book/src/rust-from-python.md @@ -1,6 +1,6 @@ # Unit 7.1 - Rust from Python -Slides +Slides ## Exercise 7.1.1: Test your environment @@ -109,4 +109,4 @@ Can you make `strompy` support [more operations from Nalgebra](https://docs.rs/n Representing the vectors as `Vec>` works, but it's not great. Make the `StrompyJsonReader` produce [`PyResult>>`](https://docs.rs/pyo3/0.21.2/pyo3/types/struct.PyList.html)s that constists of `PyList`s instead. -*This is quite a hard exercise, as it involves working with PyO3s smart pointers: [`Py`](https://docs.rs/pyo3/0.21.2/pyo3/struct.Py.html), [`Bound<'py, T>`](https://docs.rs/pyo3/0.21.2/pyo3/struct.Bound.html), and GIL tokens: [`Python`](https://docs.rs/pyo3/0.21.2/pyo3/marker/struct.Python.html)* \ No newline at end of file +*This is quite a hard exercise, as it involves working with PyO3s smart pointers: [`Py`](https://docs.rs/pyo3/0.21.2/pyo3/struct.Py.html), [`Bound<'py, T>`](https://docs.rs/pyo3/0.21.2/pyo3/struct.Bound.html), and GIL tokens: [`Python`](https://docs.rs/pyo3/0.21.2/pyo3/marker/struct.Python.html)*