Commit 6dad4d22 authored by Kevin Modzelewski's avatar Kevin Modzelewski

Add failing codegen test (reduced from subprocess.py)

We currently can't deopt from inside an exception block.
parent 2c814183
import types
def f(self, args):
if isinstance(args, types.StringTypes):
pass
try:
self.pid
except:
pass
class C(object):
pass
c = C()
c.pid = 1
for i in xrange(20000):
f(c, None)
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