File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 66
77import unittest
88import test .support
9- from test .support import import_helper
109import sys
11- # import gc # XXX: RUSTPYTHON
10+ import gc
1211import weakref
1312import array
1413import io
1514import copy
1615import pickle
1716
17+ from test .support import import_helper
18+
1819
1920class AbstractMemoryTests :
2021 source_bytes = b"abcdef"
@@ -418,9 +419,11 @@ class BaseArrayMemoryTests(AbstractMemoryTests):
418419 itemsize = array .array ('i' ).itemsize
419420 format = 'i'
420421
422+ @unittest .skip ('XXX test should be adapted for non-byte buffers' )
421423 def test_getbuffer (self ):
422424 pass
423425
426+ @unittest .skip ('XXX NotImplementedError: tolist() only supports byte views' )
424427 def test_tolist (self ):
425428 pass
426429
You can’t perform that action at this time.
0 commit comments