File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -1617,7 +1617,7 @@ category.
16171617| +-------------------------------------------+---------------------------------------------------+
16181618| | :meth: `str.casefold ` | |
16191619| +-------------------------------------------+---------------------------------------------------+
1620- | | :meth: `str.capitalize ` | :meth: `bytes.capitalize ` |
1620+ | | :meth: `str. ` | :meth: `bytes.capitalize ` |
16211621| +-------------------------------------------+---------------------------------------------------+
16221622| | :meth: `str.title ` | :meth: `bytes.title ` |
16231623| +-------------------------------------------+---------------------------------------------------+
@@ -1765,6 +1765,13 @@ expression support in the :mod:`re` module).
17651765 'Python is amazing'
17661766 >>> 'Njemačka starts With a non-ASCII digraph'.capitalize()
17671767 'Njemačka starts with a non-ascii digraph'
1768+ >>> ' DZ, Dz, dz'.title()
1769+ >>> 'DŽ, Dž, dž '.title()
1770+ >>> 'IJ, ij'.title()
1771+ >>> 'LJ, Lj, lj '.title()
1772+ >>> 'NJ, Nj, nj '.title()
1773+ >>> 'ᵺ '.title()
1774+
17681775
17691776 See also :meth: `title `.
17701777
You can’t perform that action at this time.
0 commit comments