Reverting last commit. I had some staled data from an attempted svnmerge in my local sandbox

This commit is contained in:
Christian Heimes 2007-12-03 19:53:57 +00:00
parent e69c320d48
commit f9290773fc
7 changed files with 6 additions and 683 deletions

View file

@ -1668,19 +1668,6 @@ And finalization:
exiting
GeneratorExit is not caught by except Exception:
>>> def f():
... try: yield
... except Exception: print 'except'
... finally: print 'finally'
>>> g = f()
>>> g.next()
>>> del g
finally
Now let's try some ill-behaved generators:
>>> def f():