[New-bugs-announce] [issue5503] multiprocessing/connection.py wrong pipe name under win32

jq report at bugs.python.org
Wed Mar 18 03:17:24 CET 2009


New submission from jq <jqcn2003 at hotmail.com>:

def arbitrary_address(family):

    elif family == 'AF_PIPE':
        return tempfile.mktemp(prefix=r'\\.\pipe\pyc-%d-%d-' %
                               (os.getpid(), _mmap_counter.next()))
    

#works after removed tempfile.mktemp 

return r'\\.\pipe\pyc-%d-%d-' % (os.getpid(), _mmap_counter.next())

----------
components: Library (Lib)
messages: 83730
nosy: jqcn2003
severity: normal
status: open
title: multiprocessing/connection.py wrong pipe name under win32
versions: Python 2.6

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue5503>
_______________________________________


More information about the New-bugs-announce mailing list