Change by Nathan Michaels :
--
components: Library (Lib)
nosy: nmichaels
priority: normal
severity: normal
status: open
title: multiprocessing.connection.Listener fails to close with null byte in
AF_UNIX socket name.
type: crash
versions: Python 3.6
New submission from Nathan Michaels :
>>> from multiprocessing.connection import Listener
>>> listener = Listener('\0conntest', family='AF_UNIX')
>>> listener.close()
Traceback (most recent call last):
File "", line 1, in
File "
New submission from Nathan Michaels :
There's a typo in the README in the 2.6 source root. "versio" on line
942 should be "version".
--
assignee: georg.brandl
components: Documentation
files: fix.diff
keywords: patch
messages: 89998
nosy: georg.brandl, nmichael