mailpipe: fix _get_message_subject() doctest for "-ascii part".
authorW. Trevor King <wking@tremily.us>
Mon, 22 Oct 2012 00:19:37 +0000 (20:19 -0400)
committerW. Trevor King <wking@tremily.us>
Mon, 22 Oct 2012 00:19:37 +0000 (20:19 -0400)
commitc47bc820cb31db468b5eb84358bccde451a1252e
tree61a7ea937d92dee6d7df40a1985d5d84aa27e24c
parent41b171aa8c3649c20e40a44f8badf355242df863
mailpipe: fix _get_message_subject() doctest for "-ascii part".

In both Python 3.2.3 and 3.3 the doctest subject is encoded as

  '=?utf-8?q?unicode_part?= -ascii part'

In Python 3.3, this is now correctly decoded (I think) to retain the
space.  It seems to me that the encoded version should actually be:

  '=?utf-8?q?unicode_part?=-ascii part'

but I don't care enough to track that down ;).
pygrader/mailpipe.py