diff options
| author | sommersoft <sommersoft@users.noreply.github.com> | 2018-03-30 14:27:39 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-03-30 14:27:39 -0500 |
| commit | 6ee573c7c9e4912de8c518df73af81dd8c2fd935 (patch) | |
| tree | 1baf37ee083406f978385c4b9b7cf0beb8adc1e1 /tests/basics/array_micropython.py | |
| parent | 6205ed9a0cf97ab8c0bf873d6cb1d7da4fd8accf (diff) | |
| parent | bee0d2edb44f2bfe9442749a4f15fff5572eab6b (diff) | |
Merge branch 'master' into super_status
Diffstat (limited to 'tests/basics/array_micropython.py')
| -rw-r--r-- | tests/basics/array_micropython.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/basics/array_micropython.py b/tests/basics/array_micropython.py index e26ad7ae9..b92c5a9b9 100644 --- a/tests/basics/array_micropython.py +++ b/tests/basics/array_micropython.py @@ -5,6 +5,12 @@ except ImportError: print("SKIP") raise SystemExit +try: + array.array('O') +except ValueError: + print("SKIP") + raise SystemExit + # arrays of objects a = array.array('O') a.append(1) |
