summaryrefslogtreecommitdiffstats
path: root/Demo/sockets
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1998-01-29 04:04:04 (GMT)
committerGuido van Rossum <guido@python.org>1998-01-29 04:04:04 (GMT)
commit44f5c75f430c92384137c4bef0c0a69dce02ee0b (patch)
tree1b444c5a127e45df925436970f15a8b6a0fc46a6 /Demo/sockets
parentdd918a990a274c808081d35beb1fd222385c86b3 (diff)
downloadcpython-44f5c75f430c92384137c4bef0c0a69dce02ee0b.zip
cpython-44f5c75f430c92384137c4bef0c0a69dce02ee0b.tar.gz
cpython-44f5c75f430c92384137c4bef0c0a69dce02ee0b.tar.bz2
Add Piet van Oostrum's name to the comments.
Diffstat (limited to 'Demo/sockets')
-rw-r--r--Demo/sockets/unixserver.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Demo/sockets/unixserver.py b/Demo/sockets/unixserver.py
index 3d6f3c3..d4c7061 100644
--- a/Demo/sockets/unixserver.py
+++ b/Demo/sockets/unixserver.py
@@ -1,4 +1,5 @@
-# Echo server program using Unix sockets (handles one connection only)
+# Echo server demo using Unix sockets (handles one connection only)
+# Piet van Oostrum
from socket import *
FILE = 'blabla'
s = socket(AF_UNIX, SOCK_STREAM)