forked from VimPlug/jedi
8 lines
108 B
Python
8 lines
108 B
Python
|
|
NOT_REACHABLE = object()
|
|
REACHABLE = object()
|
|
UNSURE = object()
|
|
|
|
def break_check(scope):
|
|
return UNSURE
|