summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorEric V. Smith <ericvsmith@users.noreply.github.com>2017-12-04 21:58:55 (GMT)
committerGitHub <noreply@github.com>2017-12-04 21:58:55 (GMT)
commitf0db54a0a1823534606ed5ce5a772365ba694c41 (patch)
tree8fc106d161e8585a2407c186478960d46d2030f9 /Misc
parent1e2fcac4972530aa2c963d7e4011021df5ba866e (diff)
downloadcpython-f0db54a0a1823534606ed5ce5a772365ba694c41.zip
cpython-f0db54a0a1823534606ed5ce5a772365ba694c41.tar.gz
cpython-f0db54a0a1823534606ed5ce5a772365ba694c41.tar.bz2
bpo-32214: Implement PEP 557: Data Classes (#4704)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2017-12-04-15-51-57.bpo-32214.uozdNj.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-12-04-15-51-57.bpo-32214.uozdNj.rst b/Misc/NEWS.d/next/Library/2017-12-04-15-51-57.bpo-32214.uozdNj.rst
new file mode 100644
index 0000000..fd9c4d4
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2017-12-04-15-51-57.bpo-32214.uozdNj.rst
@@ -0,0 +1,2 @@
+PEP 557, Data Classes. Provides a decorator which adds boilerplate methods
+to classes which use type annotations so specify fields.