I ran into this interesting little 'gotcha' this evening, consider the following code snippet:
( chr(1) == 1 )
This comparison evaluates to False on Python 2.7.4, is this a feature or a bug?, If a feature, can anyone explain the reasoning behind this design decision?