This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author peter.otten
Recipients mark, peter.otten
Date 2016-01-15.18:34:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1452882854.38.0.496483572161.issue26126@psf.upfronthosting.co.za>
In-reply-to
Content
Not a bug. In your XFORMS dict you have

>>> ord("Æ") == 0xC6
True

Whether the value of "Æ" or 0xC6 is used by str.maketrans() depends on the order of the dict entries which in turn is determined by the keys' hash. Remove one and you should see consistent results.
History
Date User Action Args
2016-01-15 18:34:14peter.ottensetrecipients: + peter.otten, mark
2016-01-15 18:34:14peter.ottensetmessageid: <1452882854.38.0.496483572161.issue26126@psf.upfronthosting.co.za>
2016-01-15 18:34:14peter.ottenlinkissue26126 messages
2016-01-15 18:34:14peter.ottencreate