diff options
| author | 2023-06-05 21:49:44 -0400 | |
|---|---|---|
| committer | 2023-06-05 18:49:44 -0700 | |
| commit | 200a946f0eaa3e77390a2ab63ed6d02b69e3bcb9 (patch) | |
| tree | b1c1fe35e8ed76e42f643a829ea8f315e1ab82ed | |
| parent | Merge pull request #2622 from python-discord/add-new-badges (diff) | |
Update mutability tag to link Nedbat's talk (#2546)
Co-authored-by: wookie184 <[email protected]>
Co-authored-by: Bradley Reynolds <[email protected]>
Diffstat (limited to '')
| -rw-r--r-- | bot/resources/tags/mutability.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bot/resources/tags/mutability.md b/bot/resources/tags/mutability.md index a1d2c8ee0..fd9319daf 100644 --- a/bot/resources/tags/mutability.md +++ b/bot/resources/tags/mutability.md @@ -37,3 +37,5 @@ Mutable data types like `list`, on the other hand, can be changed in-place: ``` Other examples of mutable data types in Python are `dict` and `set`. Instances of user-defined classes are also mutable. + +For an in-depth guide on mutability see [Ned Batchelder's video on names and values](https://youtu.be/_AEJHKGk9ns/). |