diff options
author | Vadim Pushtaev <pushtaev.vm@gmail.com> | 2018-08-12 11:46:05 (GMT) |
---|---|---|
committer | Eric V. Smith <ericvsmith@users.noreply.github.com> | 2018-08-12 11:46:05 (GMT) |
commit | 4d12e4dc28b7c782c368bae2e8fd3815167ed37d (patch) | |
tree | 27d658c85e655c7a59a2de0d382d6e9d58a04365 /Misc | |
parent | 65b5ef02ec1f44e3a19b689a1ecf73d01c82161b (diff) | |
download | cpython-4d12e4dc28b7c782c368bae2e8fd3815167ed37d.zip cpython-4d12e4dc28b7c782c368bae2e8fd3815167ed37d.tar.gz cpython-4d12e4dc28b7c782c368bae2e8fd3815167ed37d.tar.bz2 |
bpo-34213: Allow dataclasses to work with a field named 'object'. (GH-8452)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2018-07-25-00-40-14.bpo-34213.O15MgP.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-07-25-00-40-14.bpo-34213.O15MgP.rst b/Misc/NEWS.d/next/Library/2018-07-25-00-40-14.bpo-34213.O15MgP.rst new file mode 100644 index 0000000..28012af --- /dev/null +++ b/Misc/NEWS.d/next/Library/2018-07-25-00-40-14.bpo-34213.O15MgP.rst @@ -0,0 +1 @@ +Allow frozen dataclasses to have a field named "object". Previously this conflicted with an internal use of "object". |