Message371864
An extraneous difficulty also exists for bytes regexes, because there non-ascii characters are repr'ed using escape sequences. So there's a risk of cutting one in the middle.
```
>>> import re
>>> re.match(b".*", b"\xce")
<re.Match object; span=(0, 1), match=b'\xce'>
``` |
|
Date |
User |
Action |
Args |
2020-06-19 09:55:33 | matpi | set | recipients:
+ matpi, rhettinger, eric.smith, ezio.melotti, mrabarnett, Seth.Troisi, serhiy.storchaka |
2020-06-19 09:55:33 | matpi | set | messageid: <1592560533.62.0.249780692644.issue39949@roundup.psfhosted.org> |
2020-06-19 09:55:33 | matpi | link | issue39949 messages |
2020-06-19 09:55:33 | matpi | create | |
|