pgp: force protocol/micalg ordering in doctest output. master
authorW. Trevor King <wking@tremily.us>
Sun, 21 Oct 2012 20:05:16 +0000 (16:05 -0400)
committerW. Trevor King <wking@tremily.us>
Sun, 21 Oct 2012 20:05:19 +0000 (16:05 -0400)
commitddd7ebbee2827208f315d6b7d575faff8531dd3d
treedcb74135bda639788d336bcc05578c816c62bc81
parentc0ed1e296302924b023769e2a0bc3ffb9b263aef
pgp: force protocol/micalg ordering in doctest output.

The Content-Type header is eventually set by Message.add_header(),
which gets extra parameters from **_params and iterates over them with
_params.items().  _params is a dict, so .items() is not sorted.
Rather than using ELLIPSIS, I thought it was clearer if we explicitly
force our expected ordering in doctest output.
pgp_mime/pgp.py