Message310647
I've found the Regular Expression HOWTO to be very helpful
(https://docs.python.org/3/howto/regex.html?highlight=regular%20expressions).
One inconsistency I noticed is that the intro to metacharacters says
"Metacharacters are not active inside classes. "
But farther down we learn that a class can be constructed using \s: [\s,.],
which is "all white space characters , and ."
It's not the 4 characters "\ s , and ."
So I think the first statement would be clearer as
"Metacharacters (except \) are not active inside classes. " |
|
Date |
User |
Action |
Args |
2018-01-25 00:01:01 | kdraeder | set | recipients:
+ kdraeder, docs@python |
2018-01-25 00:01:01 | kdraeder | set | messageid: <1516838461.29.0.467229070634.issue32658@psf.upfronthosting.co.za> |
2018-01-25 00:01:01 | kdraeder | link | issue32658 messages |
2018-01-25 00:01:01 | kdraeder | create | |
|