test_utils_quote_unquote(): Test for unquote() properly
de-backslash-ifying.
diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py
index 0fe304b..95eb0e8 100644
--- a/Lib/email/test/test_email.py
+++ b/Lib/email/test/test_email.py
@@ -1673,6 +1673,13 @@
[('Al Person', 'aperson@dom.ain'),
('Bud Person', 'bperson@dom.ain')])
+ def test_utils_quote_unquote(self):
+ eq = self.assertEqual
+ msg = Message()
+ msg.add_header('content-disposition', 'attachment',
+ filename='foo\\wacky"name')
+ eq(msg.get_filename(), 'foo\\wacky"name')
+
# Test the iterator/generators