Code you're trying to run:
def funky():
print "cheese"
def gen():
i=0
funky()
yield 1
i += 1
Then in Javascript:
g = gen();
g.next()
What does "real" Python output?
Cheese
What browser are you using? On what operating system?
FF3.5 Fedora 11.
Please provide any additional information.
error: TypeError: obj is undefined
Original issue reported on code.google.com by justynbu...@gmail.com on 14 Sep 2009 at 10:21
Original issue reported on code.google.com by
justynbu...@gmail.com
on 14 Sep 2009 at 10:21