summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNikita Sobolev <mail@sobolevn.me>2023-03-11 00:26:46 (GMT)
committerGitHub <noreply@github.com>2023-03-11 00:26:46 (GMT)
commitb48be8fa18518583abb21bf6e4f5d7e4b5c9d7b2 (patch)
treef378710f37135e512641c0c72ee3b22dcc5b5d18 /Misc
parentee6f8413a99d0ee4828e1c81911e203d3fff85d5 (diff)
downloadcpython-b48be8fa18518583abb21bf6e4f5d7e4b5c9d7b2.zip
cpython-b48be8fa18518583abb21bf6e4f5d7e4b5c9d7b2.tar.gz
cpython-b48be8fa18518583abb21bf6e4f5d7e4b5c9d7b2.tar.bz2
gh-102103: add `module` argument to `dataclasses.make_dataclass` (#102104)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2023-02-21-11-56-16.gh-issue-102103.Dj0WEj.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-02-21-11-56-16.gh-issue-102103.Dj0WEj.rst b/Misc/NEWS.d/next/Library/2023-02-21-11-56-16.gh-issue-102103.Dj0WEj.rst
new file mode 100644
index 0000000..feba433
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2023-02-21-11-56-16.gh-issue-102103.Dj0WEj.rst
@@ -0,0 +1,2 @@
+Add ``module`` argument to :func:`dataclasses.make_dataclass` and make
+classes produced by it pickleable.