Commit b65cb163 authored by xpvpc's avatar xpvpc Committed by Mariatta

Correct the code example in Python 3.7's What's New (GH-5696)

There was an extra dash in the example for re.sub().
parent 997b8c14
...@@ -1146,7 +1146,7 @@ Changes in the Python API ...@@ -1146,7 +1146,7 @@ Changes in the Python API
:func:`re.sub()` now replaces empty matches adjacent to a previous :func:`re.sub()` now replaces empty matches adjacent to a previous
non-empty match. For example ``re.sub('x*', '-', 'abxd')`` returns now non-empty match. For example ``re.sub('x*', '-', 'abxd')`` returns now
``'-a-b--d-'`` instead of ``'-a-b--d-'`` (the first minus between 'b' and ``'-a-b--d-'`` instead of ``'-a-b-d-'`` (the first minus between 'b' and
'd' replaces 'x', and the second minus replaces an empty string between 'd' replaces 'x', and the second minus replaces an empty string between
'x' and 'd'). 'x' and 'd').
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment