diff options
author | Eric V. Smith <ericvsmith@users.noreply.github.com> | 2021-04-06 14:08:18 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-06 14:08:18 (GMT) |
commit | 1744c96ebc98b240f2564f75191097704b37244f (patch) | |
tree | 55d78880b0b864b32af5f36adff7aa5fb20430f0 | |
parent | 5787ba4a45492e232f5470c7d2e93763198e4b22 (diff) | |
download | cpython-1744c96ebc98b240f2564f75191097704b37244f.zip cpython-1744c96ebc98b240f2564f75191097704b37244f.tar.gz cpython-1744c96ebc98b240f2564f75191097704b37244f.tar.bz2 |
Fix blurb for bpo-43176. (GH-25215)
-rw-r--r-- | Misc/NEWS.d/next/Library/2021-02-09-07-24-29.bpo-43176.bocNQn.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-02-09-07-24-29.bpo-43176.bocNQn.rst b/Misc/NEWS.d/next/Library/2021-02-09-07-24-29.bpo-43176.bocNQn.rst index 66a175d..016514d 100644 --- a/Misc/NEWS.d/next/Library/2021-02-09-07-24-29.bpo-43176.bocNQn.rst +++ b/Misc/NEWS.d/next/Library/2021-02-09-07-24-29.bpo-43176.bocNQn.rst @@ -1 +1 @@ -Fixed processing of empty dataclasses.
\ No newline at end of file +Fixed processing of a dataclass that inherits from a frozen dataclass with no fields. It is now correctly detected as an error. |