aboutsummaryrefslogtreecommitdiff
path: root/tests/test_string.py (follow)
Commit message (Collapse)AuthorAge
* Fix backslashes "eating" their next character.Hugo Hörnquist2023-09-19
Since we are working with literal characters, than a backslash shouldn't be removed when esacping a character. The current (and excpeted) functionallity is that the backslash should escape the next character, but print both. Also added tests for this.