Tagged Questions

4
votes
4answers
721 views

Default encoding of exception messages

The following code examines the behaviour of the float() method when fed a non-ascii symbol: import sys try: float(u'\xbd') except ValueError as e: print sys.getdefaultencoding() # in my system, ...