diff options
author | Eric V. Smith <ericvsmith@users.noreply.github.com> | 2017-12-04 21:58:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-04 21:58:55 (GMT) |
commit | f0db54a0a1823534606ed5ce5a772365ba694c41 (patch) | |
tree | 8fc106d161e8585a2407c186478960d46d2030f9 /Misc | |
parent | 1e2fcac4972530aa2c963d7e4011021df5ba866e (diff) | |
download | cpython-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.rst | 2 |
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. |