diff options
Diffstat (limited to 'testing/zipapp')
-rwxr-xr-x | testing/zipapp/entry | 2 | ||||
-rwxr-xr-x | testing/zipapp/make | 2 | ||||
-rwxr-xr-x | testing/zipapp/python | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/testing/zipapp/entry b/testing/zipapp/entry index f0a345e..87f9291 100755 --- a/testing/zipapp/entry +++ b/testing/zipapp/entry @@ -68,4 +68,4 @@ def main() -> int: if __name__ == '__main__': - exit(main()) + raise SystemExit(main()) diff --git a/testing/zipapp/make b/testing/zipapp/make index 8740b2f..55b6d2c 100755 --- a/testing/zipapp/make +++ b/testing/zipapp/make @@ -106,4 +106,4 @@ def main() -> int: if __name__ == '__main__': - exit(main()) + raise SystemExit(main()) diff --git a/testing/zipapp/python b/testing/zipapp/python index 97c5928..7184a1a 100755 --- a/testing/zipapp/python +++ b/testing/zipapp/python @@ -45,4 +45,4 @@ def main() -> int: if __name__ == '__main__': - exit(main()) + raise SystemExit(main()) |