diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-09-16 14:35:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-16 14:35:14 (GMT) |
commit | 48f99250ff319e36b15b555128cd62e408d8165f (patch) | |
tree | b2d3308cfff3bce8a0e83a999ad8b074baa99ce5 /Misc | |
parent | 6a39888c2c4bcfbcdc61a1953911ad30c62da1ef (diff) | |
download | cpython-48f99250ff319e36b15b555128cd62e408d8165f.zip cpython-48f99250ff319e36b15b555128cd62e408d8165f.tar.gz cpython-48f99250ff319e36b15b555128cd62e408d8165f.tar.bz2 |
bpo-41517: do not allow Enums to be extended (GH-22271)
fix bug that let Enums be extended via multiple inheritance
(cherry picked from commit 3064dbf5df1021e85b507366a7ea448c8895efe7)
Co-authored-by: Ethan Furman <ethan@stoneleaf.us>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2020-09-15-22-43-30.bpo-41517.sLBH7g.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-09-15-22-43-30.bpo-41517.sLBH7g.rst b/Misc/NEWS.d/next/Library/2020-09-15-22-43-30.bpo-41517.sLBH7g.rst new file mode 100644 index 0000000..e765471 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2020-09-15-22-43-30.bpo-41517.sLBH7g.rst @@ -0,0 +1 @@ +fix bug allowing Enums to be extended via multiple inheritance |