Staging
v0.5.1
https://github.com/python/cpython
Revision 705a35826576325f3ba18c722a0fda0aaecf0f62 authored by Georg Brandl on 06 January 2010, 18:26:08 UTC, committed by Georg Brandl on 06 January 2010, 18:26:08 UTC
1 parent 8904053
Raw File
Tip revision: 705a35826576325f3ba18c722a0fda0aaecf0f62 authored by Georg Brandl on 06 January 2010, 18:26:08 UTC
#5950: document that zip files with comments are unsupported in zipimport.
Tip revision: 705a358
unixclient.py
# Echo client demo using Unix sockets
# Piet van Oostrum

from socket import *

FILE = 'unix-socket'
s = socket(AF_UNIX, SOCK_STREAM)
s.connect(FILE)
s.send('Hello, world')
data = s.recv(1024)
s.close()
print 'Received', repr(data)
back to top