This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: multiprocessing/connection.py wrong pipe name under win32
Type: behavior Stage:
Components: Library (Lib) Versions: Python 3.0, Python 3.1, Python 2.7, Python 2.6
process
Status: closed Resolution: wont fix
Dependencies: Superseder:
Assigned To: jnoller Nosy List: jnoller, jqcn2003
Priority: normal Keywords:

Created on 2009-03-18 02:17 by jqcn2003, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (3)
msg83730 - (view) Author: jq (jqcn2003) Date: 2009-03-18 02:17
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())
msg84873 - (view) Author: Jesse Noller (jnoller) * (Python committer) Date: 2009-03-31 19:23
I need to know what the exception/error is, given multiprocessing is 
working fine on WIN32. Setting status to pending - without a test case 
that shows the issue or more information, I can not move forward with 
this.
msg89903 - (view) Author: Jesse Noller (jnoller) * (Python committer) Date: 2009-06-30 03:10
Closing; without the exception/more details, and with multiprocessing 
working on WIN32 I don't have anything to go on.
History
Date User Action Args
2022-04-11 14:56:46adminsetgithub: 49753
2009-06-30 03:10:54jnollersetstatus: pending -> closed
resolution: wont fix
messages: + msg89903
2009-03-31 19:23:51jnollersetstatus: open -> pending

messages: + msg84873
2009-03-18 10:55:03pitrousetversions: + Python 3.0, Python 3.1, Python 2.7
nosy: + jnoller

priority: normal
assignee: jnoller
type: behavior
2009-03-18 02:17:23jqcn2003create