This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author scop
Recipients ezio.melotti, mrabarnett, scop, serhiy.storchaka
Date 2018-05-20.13:33:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1526823220.02.0.682650639539.issue33585@psf.upfronthosting.co.za>
In-reply-to
Content
Right, it's not limited to repl functions.

Python 3.6.3:
$ python -c 'import re;print(re.sub(".*", "X", "foo"))'
X

Python 3.7.0b4+:
$ python -c 'import re;print(re.sub(".*", "X", "foo"))'
XX

Poking serhiy.storchaka who according to the release notes, seems to have done quite a bit of work on re in 3.7.
History
Date User Action Args
2018-05-20 13:33:40scopsetrecipients: + scop, ezio.melotti, mrabarnett, serhiy.storchaka
2018-05-20 13:33:40scopsetmessageid: <1526823220.02.0.682650639539.issue33585@psf.upfronthosting.co.za>
2018-05-20 13:33:40scoplinkissue33585 messages
2018-05-20 13:33:39scopcreate