Skip to content

Commit

Permalink
Merge pull request #1011 from yawara/fix-broken-link
Browse files Browse the repository at this point in the history
Fix broken link
  • Loading branch information
davidhewitt committed Jun 29, 2020
2 parents 61a58ed + 83ce7e6 commit 0870baa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion guide/src/migration.md
Expand Up @@ -44,7 +44,7 @@ struct ThreadSafe {
Or in situations where you cannot change your `#[pyclass]` to automatically implement `Send`
(e.g., when it contains a raw pointer), you can use `unsafe impl Send`.
In such cases, care should be taken to ensure the struct is actually thread safe.
See [the Rustnomicon](ttps://doc.rust-lang.org/nomicon/send-and-sync.html) for more.
See [the Rustnomicon](https://doc.rust-lang.org/nomicon/send-and-sync.html) for more.

### All `PyObject` and `Py<T>` methods now take `Python` as an argument
Previously, a few methods such as `Object::get_refcnt` did not take `Python` as an argument (to
Expand Down

0 comments on commit 0870baa

Please sign in to comment.