Files
openide/python/testData/debug/stepping/test_smart_step_into_inheritance.py
Andrey Lisin 2f87d7c3ae IDEA-CR-58850: PY-24748 Support step over for coroutines
(cherry picked from commit b66707327989822f23c57aa19fa81dd38a02ed67)

GitOrigin-RevId: e85b75676c138cf9ce2de0ac07a88f19a730f5c0
2020-03-02 16:09:44 +00:00

20 lines
252 B
Python

from __future__ import print_function
def make_class(x):
class C:
p = x
return C
def foo():
return 100
class D(make_class(foo())): # breakpoint
def __init__(self):
self.d = 3
def foo(self):
return 1