IDEA-CR-53093: PY-37226 Revert pydev prefix for test directories

GitOrigin-RevId: 3d4abb05167e85cb44720e36d0fa3b949f199f30
This commit is contained in:
Elizaveta Shashkova
2019-09-19 11:57:49 +03:00
committed by intellij-monorepo-bot
parent 20597fd799
commit 626a14835a
197 changed files with 53 additions and 53 deletions

View File

@@ -0,0 +1,15 @@
def fn_with_except():
try:
raise Exception()
except:
pass
def test_except():
fn_with_except()
fn_with_except()
if __name__ == '__main__':
test_except()
print('TEST SUCEEDED')