[Python-Dev] Shouldn't I be able to print Unicode objects?

Skip Montanaro skip@pobox.com (Skip Montanaro)
Tue, 5 Jun 2001 14:23:54 -0500


    Me> [what am I missing?]

    Michael> The encoding:

    >>> print u"\N{DEGREE SIGN}".encode("latin1")
    =B0

Hmmm... I don't believe I've ever encountered an object in Python befor=
e
that you couldn't simply print.  Are Unicode objects unique in this res=
pect?
Seems like a bug (or at least a feature) to me.

Skip