You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#1000 adds __dict__ to _io._IOBase but it exposes the following issue:
import_iob=_io.BytesIO()
b.foo=2assert"foo"indir(b) # this currently failsassert"foo"inb.__dict__classTest(_io.BytesIO): passb=Test()
b.foo=2assert"foo"indir(b)
assert"foo"inb.__dict__# this currently fails
This causes pickling failures in CPython.test_memoryio.