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/3 cython/cytest.py | |
parent | 1695ff83be789e0268062f3bdc7f1e28b19a069a (diff) | |
download | meson-killpy3.tar.gz |
Remove deprecated python3 module.killpy3
Diffstat (limited to 'test cases/python3/3 cython/cytest.py')
-rwxr-xr-x | test cases/python3/3 cython/cytest.py | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/test cases/python3/3 cython/cytest.py b/test cases/python3/3 cython/cytest.py deleted file mode 100755 index 43443dc66..000000000 --- a/test cases/python3/3 cython/cytest.py +++ /dev/null @@ -1,23 +0,0 @@ -#!/usr/bin/env python3 - -from storer import Storer -import sys - -s = Storer() - -if s.get_value() != 0: - print('Initial value incorrect.') - sys.exit(1) - -s.set_value(42) - -if s.get_value() != 42: - print('Setting value failed.') - sys.exit(1) - -try: - s.set_value('not a number') - print('Using wrong argument type did not fail.') - sys.exit(1) -except TypeError: - pass |