summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-01-14 18:23:30 (GMT)
committerBenjamin Peterson <benjamin@python.org>2012-01-14 18:23:30 (GMT)
commitd5890c8db5ed67d41719543a34b33f6a0e0a6f7f (patch)
tree9bf92ee63587d31ed44e8a37d90582913d37d95c /Misc
parent94d5a7174aaa107617b208ebc511a8f360196b1a (diff)
downloadcpython-d5890c8db5ed67d41719543a34b33f6a0e0a6f7f.zip
cpython-d5890c8db5ed67d41719543a34b33f6a0e0a6f7f.tar.gz
cpython-d5890c8db5ed67d41719543a34b33f6a0e0a6f7f.tar.bz2
add str.casefold() (closes #13752)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index adb6e45..1afe584 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,8 @@ What's New in Python 3.3 Alpha 1?
Core and Builtins
-----------------
+- Issue #13752: Add a casefold() method to str.
+
- Issue #13761: Add a "flush" keyword argument to the print() function,
used to ensure flushing the output stream.