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.

Author gearb0x
Recipients BreamoreBoy, gearb0x, jnoller, neologix, news1234, pitrou
Date 2012-01-06.02:18:52
SpamBayes Score 1.0521079e-05
Marked as misclassified No
Message-id <1325816333.91.0.969165023049.issue8184@psf.upfronthosting.co.za>
In-reply-to
Content
Rather than listening on a socket, listening on a named pipe

eg:
address = (r'\\.\pipe\Test', 'AF_PIPE')
listener = Listener(*address)
conn = listener.accept()

It doesnt raise an exception when i run the script again a second time.

Like I said, I dont know much about named pipes and im not even sure thats how they are intended to work in this context. IE: if one process is listening, can another listen on that named pipe as well?

Phill
History
Date User Action Args
2012-01-06 02:18:53gearb0xsetrecipients: + gearb0x, pitrou, jnoller, news1234, neologix, BreamoreBoy
2012-01-06 02:18:53gearb0xsetmessageid: <1325816333.91.0.969165023049.issue8184@psf.upfronthosting.co.za>
2012-01-06 02:18:53gearb0xlinkissue8184 messages
2012-01-06 02:18:52gearb0xcreate