forked from VimPlug/jedi
8 lines
108 B
Python
8 lines
108 B
Python
def raises():
|
|
raise KeyError()
|
|
|
|
|
|
def wrong_name():
|
|
#! 6 name-error
|
|
raise NotExistingException()
|