It seems that when using a `QuotedString` with `unquote_results=True` (the default), it will incorrectly expand escaped whitespace characters. For example: ```python import pyparsing as pp print(pp.QuotedString(quoteChar='"', escChar='\\').parse_string(r'"\\n"')) ``` Actual: ```python ['\\\n'] ``` Expected: ```python ['\\n'] ``` It works fine if I pass `unquote_results=False` (with the obvious downside of not unquoting the results...): ```python print(pp.QuotedString(quoteChar='"', escChar='\\', unquote_results=False).parse_string(r'"\\n"') ``` gives ```python ['"\\\\n"'] ```