Skip to content

Commit 5c37579

Browse files
committed
GR-27707: basicsize for native objects not yet supported
1 parent 42f868a commit 5c37579

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

graalpython/lib-python/3/test/test_bz2.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -661,6 +661,7 @@ def testCompress4G(self, size):
661661
finally:
662662
data = None
663663

664+
@support.impl_detail("GR-27707: basicsize for native objects not yet supported", graalvm=False)
664665
def testPickle(self):
665666
for proto in range(pickle.HIGHEST_PROTOCOL + 1):
666667
with self.assertRaises(TypeError):

graalpython/lib-python/3/test/test_csv.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -446,11 +446,13 @@ def test_bad_dialect(self):
446446
self.assertRaises(TypeError, csv.reader, [], quoting = -1)
447447
self.assertRaises(TypeError, csv.reader, [], quoting = 100)
448448

449+
@support.impl_detail("GR-27707: basicsize for native objects not yet supported", graalvm=False)
449450
def test_copy(self):
450451
for name in csv.list_dialects():
451452
dialect = csv.get_dialect(name)
452453
self.assertRaises(TypeError, copy.copy, dialect)
453454

455+
@support.impl_detail("GR-27707: basicsize for native objects not yet supported", graalvm=False)
454456
def test_pickle(self):
455457
for name in csv.list_dialects():
456458
dialect = csv.get_dialect(name)

graalpython/lib-python/3/test/test_lzma.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -361,6 +361,7 @@ def test_decompressor_bigmem(self, size):
361361

362362
# Pickling raises an exception; there's no way to serialize an lzma_stream.
363363

364+
@support.impl_detail("GR-27707: basicsize for native objects not yet supported", graalvm=False)
364365
def test_pickle(self):
365366
for proto in range(pickle.HIGHEST_PROTOCOL + 1):
366367
with self.assertRaises(TypeError):

0 commit comments

Comments
 (0)