For clarity, I'll change

     If ``s`` does not have ``pre`` as a prefix, an unchanged copy of ``s`` is 
returned.

to

    If ``s`` does not have ``pre`` as a prefix, then ``s.cutprefix(pre)`` 
returns ``s`` or an unchanged copy of ``s``.

For consistency with the Specification section, I'll also change

    s[len(pre):] if s.startswith(pre) else s

to

    s[len(pre):] if s.startswith(pre) else s[:]

and similarly change the ``cutsuffix`` snippet.
_______________________________________________
Python-Dev mailing list -- python-dev@python.org
To unsubscribe send an email to python-dev-le...@python.org
https://mail.python.org/mailman3/lists/python-dev.python.org/
Message archived at 
https://mail.python.org/archives/list/python-dev@python.org/message/ULKK7K47QKFHXFXKNEAVF2UVNV6ZJNSD/
Code of Conduct: http://python.org/psf/codeofconduct/

Reply via email to