Message345675
| Author | mark.dickinson |
|---|---|
| Recipients | abarry, asmeurer, mark.dickinson, ncoghlan, r.david.murray, rhettinger, serhiy.storchaka |
| Date | 2019-06-15.11:37:34 |
| SpamBayes Score | -1.0 |
| Marked as misclassified | Yes |
| Message-id | <1560598654.69.0.498091335726.issue32912@roundup.psfhosted.org> |
| In-reply-to |
| Content | |
|---|---|
[Raymond]
> Also, it gets in the way of the end-user strategy of "backslash anything that looks special"
That's not a good strategy in the first place, though: adding an extra backslash for something that doesn't need to be escaped isn't benign - it's usually an error, since it puts that backslash into the resulting string.
>>> "abc\`d" == "abc`d"
False
In other words, it seems to me that getting in the way of this broken end-user strategy is a *good* thing, since it warns of possible mistakes. |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2019-06-15 11:37:34 | mark.dickinson | set | recipients: + mark.dickinson, rhettinger, ncoghlan, r.david.murray, serhiy.storchaka, abarry, asmeurer |
| 2019-06-15 11:37:34 | mark.dickinson | set | messageid: <1560598654.69.0.498091335726.issue32912@roundup.psfhosted.org> |
| 2019-06-15 11:37:34 | mark.dickinson | link | issue32912 messages |
| 2019-06-15 11:37:34 | mark.dickinson | create | |