Commit 1494945b authored by Stefan Behnel's avatar Stefan Behnel

test fix

parent 78ef8342
__doc__ = u""" __doc__ = u"""
>>> f() >>> uf()
It works!
>>> bf()
It works! It works!
""" """
DEF STUFF = "Spam" DEF USTUFF = u"Spam"
def uf():
IF USTUFF == u"Spam":
print "It works!"
ELSE:
print "Doesn't work"
DEF BSTUFF = b"Spam"
def f(): def bf():
IF STUFF == "Spam": IF BSTUFF == b"Spam":
print u"It works!" print "It works!"
ELSE: ELSE:
print u"Doesn't work" print "Doesn't work"
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment