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

test fix

parent 78ef8342
__doc__ = u"""
>>> f()
>>> uf()
It works!
>>> bf()
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():
IF STUFF == "Spam":
print u"It works!"
def bf():
IF BSTUFF == b"Spam":
print "It works!"
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