Skip to content

Commit 11e086e

Browse files
committed
test_pickle: skip test_in_band_buffers (PickleBuffer support is missing)
1 parent 2455329 commit 11e086e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

graalpython/lib-graalpython/object.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def reduce_newobj(obj):
100100
except AttributeError:
101101
pass
102102
else:
103-
slots[name] = value
103+
slots[name] = value
104104
if slots:
105105
state = state, slots
106106
else:

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2693,6 +2693,7 @@ def buffer_like_objects(self):
26932693
shape=(4, 2), strides=(1, 4),
26942694
flags=flags)
26952695

2696+
@support.impl_detail("GR-26995: PickleBuffer support missing", graalvm=False)
26962697
def test_in_band_buffers(self):
26972698
# Test in-band buffers (PEP 574)
26982699
for obj in self.buffer_like_objects():

0 commit comments

Comments
 (0)