mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-04 10:40:03 +08:00
8 lines
108 B
Python
8 lines
108 B
Python
|
def raises():
|
||
|
raise KeyError()
|
||
|
|
||
|
|
||
|
def wrong_name():
|
||
|
#! 6 name-error
|
||
|
raise NotExistingException()
|