commit | 15d6b65ead4bc2cce509fe16decce311f1f1bd71 | [log] [tgz] |
---|---|---|
author | Ezio Melotti <ezio.melotti@gmail.com> | Mon Aug 15 09:22:24 2011 +0300 |
committer | Ezio Melotti <ezio.melotti@gmail.com> | Mon Aug 15 09:22:24 2011 +0300 |
tree | a82823880d5543f64d89d72c38c90339207df682 | |
parent | ca5e908c6ed5df85571f2cfe2a27533a780bfbe3 [diff] [blame] |
#12266: Fix str.capitalize() to correctly uppercase/lowercase titlecased and cased non-letter characters.
diff --git a/Misc/NEWS b/Misc/NEWS index 585a56c..497e3d4 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -9,6 +9,9 @@ Core and Builtins ----------------- +- Issue #12266: Fix str.capitalize() to correctly uppercase/lowercase + titlecased and cased non-letter characters. + - Issues #12610 and #12609: Verify that user generated AST has correct string and identifier types before compiling.