summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Doc/whatsnew/3.11.rst8
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst
index 0f6490e..e3580c5 100644
--- a/Doc/whatsnew/3.11.rst
+++ b/Doc/whatsnew/3.11.rst
@@ -523,6 +523,14 @@ Added non parallel-safe :func:`~contextlib.chdir` context manager to change
the current working directory and then restore it on exit. Simple wrapper
around :func:`~os.chdir`. (Contributed by Filipe LaĆ­ns in :issue:`25625`)
+dataclasses
+-----------
+
+* Change field default mutability check, allowing only defaults which are
+ :term:`hashable` instead of any object which is not an instance of
+ :class:`dict`, :class:`list` or :class:`set`. (Contributed by Eric V. Smith in
+ :issue:`44674`.)
+
datetime
--------