Bug report
Bug description:
deftruncate(barrier, b, *ignore):
barrier.wait()
try: b.truncate(0)
except: BufferError# ignore exported buffer
should be
deftruncate(barrier, b, *ignore):
barrier.wait()
try: b.truncate(0)
exceptBufferError: pass# ignore exported buffer
instead.
CPython versions tested on:
CPython main branch
Operating systems tested on:
No response
Linked PRs
Bug report
Bug description:
should be
instead.
CPython versions tested on:
CPython main branch
Operating systems tested on:
No response
Linked PRs
test_free_threadingfor IO objects #138359