diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2022-04-24 14:47:58 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2022-04-30 11:52:19 +0300 |
commit | cba0f454a254f657995d8294ad4e5637c87caba7 (patch) | |
tree | bb218189e6fe98c58c8ce03765cf7f99f6975e41 /test cases/python3/2 extmodule/blaster.py | |
parent | 1695ff83be789e0268062f3bdc7f1e28b19a069a (diff) | |
download | meson-killpy3.tar.gz |
Remove deprecated python3 module.killpy3
Diffstat (limited to 'test cases/python3/2 extmodule/blaster.py')
-rwxr-xr-x | test cases/python3/2 extmodule/blaster.py | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/test cases/python3/2 extmodule/blaster.py b/test cases/python3/2 extmodule/blaster.py deleted file mode 100755 index 529b02840..000000000 --- a/test cases/python3/2 extmodule/blaster.py +++ /dev/null @@ -1,14 +0,0 @@ -#!/usr/bin/env python3 - -import tachyon -import sys - -result = tachyon.phaserize('shoot') - -if not isinstance(result, int): - print('Returned result not an integer.') - sys.exit(1) - -if result != 1: - print(f'Returned result {result} is not 1.') - sys.exit(1) |