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 matpi
Recipients Seth.Troisi, eric.smith, ezio.melotti, matpi, mrabarnett, rhettinger, serhiy.storchaka
Date 2020-06-19.10:00:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1592560830.86.0.877846460963.issue39949@roundup.psfhosted.org>
In-reply-to
Content
And ascii escapes should also not be forgotten.

```
>>> re.match(b".*", b"\t")
<re.Match object; span=(0, 1), match=b'\t'>
>>> re.match(".*", "\t")
<re.Match object; span=(0, 1), match='\t'>
```
History
Date User Action Args
2020-06-19 10:00:30matpisetrecipients: + matpi, rhettinger, eric.smith, ezio.melotti, mrabarnett, Seth.Troisi, serhiy.storchaka
2020-06-19 10:00:30matpisetmessageid: <1592560830.86.0.877846460963.issue39949@roundup.psfhosted.org>
2020-06-19 10:00:30matpilinkissue39949 messages
2020-06-19 10:00:30matpicreate