Python: Fix single quote bytes literals (b"")
In the bytes literal regexes, \x27
(') was excluded
instead of \x22
("), which made the literal unable
to terminate.
New tests were added to test this case.
Edited by Jan Paul Batrina
In the bytes literal regexes, \x27
(') was excluded
instead of \x22
("), which made the literal unable
to terminate.
New tests were added to test this case.