]> git.proxmox.com Git - mirror_edk2.git/blobdiff - AppPkg/Applications/Python/Python-2.7.2/Demo/sockets/unixclient.py
edk2: Remove AppPkg, StdLib, StdLibPrivateInternalFiles
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.2 / Demo / sockets / unixclient.py
diff --git a/AppPkg/Applications/Python/Python-2.7.2/Demo/sockets/unixclient.py b/AppPkg/Applications/Python/Python-2.7.2/Demo/sockets/unixclient.py
deleted file mode 100644 (file)
index 369e225..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-# Echo client demo using Unix sockets\r
-# Piet van Oostrum\r
-\r
-from socket import *\r
-\r
-FILE = 'unix-socket'\r
-s = socket(AF_UNIX, SOCK_STREAM)\r
-s.connect(FILE)\r
-s.send('Hello, world')\r
-data = s.recv(1024)\r
-s.close()\r
-print 'Received', repr(data)\r