summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorKingsley M <37349466+kingdom5500@users.noreply.github.com>2019-04-12 15:35:39 (GMT)
committerSteve Dower <steve.dower@microsoft.com>2019-04-12 15:35:39 (GMT)
commitb015fc86f7b1f35283804bfee788cce0a5495df7 (patch)
tree71d67a16fb6f713d49f1ffbc13dc99722b3e2905 /Misc
parentf13c5c8b9401a9dc19e95d8b420ee100ac022208 (diff)
downloadcpython-b015fc86f7b1f35283804bfee788cce0a5495df7.zip
cpython-b015fc86f7b1f35283804bfee788cce0a5495df7.tar.gz
cpython-b015fc86f7b1f35283804bfee788cce0a5495df7.tar.bz2
bpo-36549: str.capitalize now titlecases the first character instead of uppercasing it (GH-12804)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2019-04-11-12-41-31.bpo-36549.QSp8of.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-04-11-12-41-31.bpo-36549.QSp8of.rst b/Misc/NEWS.d/next/Core and Builtins/2019-04-11-12-41-31.bpo-36549.QSp8of.rst
new file mode 100644
index 0000000..9c6834c
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2019-04-11-12-41-31.bpo-36549.QSp8of.rst
@@ -0,0 +1,2 @@
+Change str.capitalize to use titlecase for the first character instead of
+uppercase.