jaraco / irc

Full-featured Python IRC library for Python.
MIT License
390 stars 84 forks source link

Fix parsing of message tags #205

Closed progval closed 10 months ago

progval commented 1 year ago

unknown escaped chars (like \b) should be unescaped to the char itself

\\s must be unescaped to \s (backslash followed by s), not to \ (backslash followed by a space)