summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorEric V. Smith <ericvsmith@users.noreply.github.com>2018-01-06 21:14:03 (GMT)
committerGitHub <noreply@github.com>2018-01-06 21:14:03 (GMT)
commited7d429ebb591f65cef558760fb4ebdc4fc8f8b0 (patch)
tree372d5745bb9d625b8d7a0be5a2bac802e40e5615 /Misc
parente7ba013d870012157f695ead7e3645c2828a7fc5 (diff)
downloadcpython-ed7d429ebb591f65cef558760fb4ebdc4fc8f8b0.zip
cpython-ed7d429ebb591f65cef558760fb4ebdc4fc8f8b0.tar.gz
cpython-ed7d429ebb591f65cef558760fb4ebdc4fc8f8b0.tar.bz2
bpo-32278: Allow dataclasses.make_dataclass() to omit type information. (gh-5115)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2018-01-06-15-15-34.bpo-32278.bGnGc0.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-01-06-15-15-34.bpo-32278.bGnGc0.rst b/Misc/NEWS.d/next/Library/2018-01-06-15-15-34.bpo-32278.bGnGc0.rst
new file mode 100644
index 0000000..c627468
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-01-06-15-15-34.bpo-32278.bGnGc0.rst
@@ -0,0 +1,2 @@
+Make type information optional on dataclasses.make_dataclass(). If omitted,
+the string 'typing.Any' is used.