aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Greg Taeger <[email protected]>2023-06-05 21:49:44 -0400
committerGravatar GitHub <[email protected]>2023-06-05 18:49:44 -0700
commit200a946f0eaa3e77390a2ab63ed6d02b69e3bcb9 (patch)
treeb1c1fe35e8ed76e42f643a829ea8f315e1ab82ed
parentMerge 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]>
-rw-r--r--bot/resources/tags/mutability.md2
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/).