diff options
author | Brennan D Baraban <34765317+bdbaraban@users.noreply.github.com> | 2019-03-03 22:09:11 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-03-03 22:09:11 (GMT) |
commit | 8b914d2767acba3a9e78f1dacdc2d61dbfd7e304 (patch) | |
tree | a06002f1635e1b5d312451509075fb3ea9cb03aa /Misc | |
parent | 8b50400fbe607ef558d6c0033efa697c99417507 (diff) | |
download | cpython-8b914d2767acba3a9e78f1dacdc2d61dbfd7e304.zip cpython-8b914d2767acba3a9e78f1dacdc2d61dbfd7e304.tar.gz cpython-8b914d2767acba3a9e78f1dacdc2d61dbfd7e304.tar.bz2 |
bpo-35899: Fix Enum handling of empty and weird strings (GH-11891)
Co-authored-by: Maxwell <maxwellpxt@gmail.com>
Co-authored-by: Stéphane Wirtel <stephane@wirtel.be>
https://bugs.python.org/issue35899
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2019-02-16-07-11-02.bpo-35899.cjfn5a.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-02-16-07-11-02.bpo-35899.cjfn5a.rst b/Misc/NEWS.d/next/Library/2019-02-16-07-11-02.bpo-35899.cjfn5a.rst new file mode 100644 index 0000000..73d4fa1 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2019-02-16-07-11-02.bpo-35899.cjfn5a.rst @@ -0,0 +1 @@ +Enum has been fixed to correctly handle empty strings and strings with non-Latin characters (ie. 'α', 'א') without crashing. Original patch contributed by Maxwell. Assisted by Stéphane Wirtel. |