summaryrefslogtreecommitdiff
path: root/tests/basics/array_micropython.py
diff options
context:
space:
mode:
authorsommersoft <sommersoft@users.noreply.github.com>2018-03-30 14:27:39 -0500
committerGitHub <noreply@github.com>2018-03-30 14:27:39 -0500
commit6ee573c7c9e4912de8c518df73af81dd8c2fd935 (patch)
tree1baf37ee083406f978385c4b9b7cf0beb8adc1e1 /tests/basics/array_micropython.py
parent6205ed9a0cf97ab8c0bf873d6cb1d7da4fd8accf (diff)
parentbee0d2edb44f2bfe9442749a4f15fff5572eab6b (diff)
Merge branch 'master' into super_status
Diffstat (limited to 'tests/basics/array_micropython.py')
-rw-r--r--tests/basics/array_micropython.py6
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)