diff options
author | Guido van Rossum <guido@python.org> | 1992-10-25 19:20:23 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1992-10-25 19:20:23 +0000 |
commit | 70c92a7ebc86938f018ad6ff099e5ad97d78c21d (patch) | |
tree | 05c8b5f3067428ac301f3acb01ab43f49f6a3dc2 /Demo/sockets | |
parent | 234c09a533631ec4add865fe7fcc8a28b8b2602d (diff) | |
download | cpython-70c92a7ebc86938f018ad6ff099e5ad97d78c21d.tar.gz |
Use /usr/local/bin/python
Diffstat (limited to 'Demo/sockets')
-rwxr-xr-x | Demo/sockets/echosvr.py | 2 | ||||
-rwxr-xr-x | Demo/sockets/finger.py | 2 | ||||
-rwxr-xr-x | Demo/sockets/telnet.py | 2 | ||||
-rwxr-xr-x | Demo/sockets/throughput.py | 2 | ||||
-rwxr-xr-x | Demo/sockets/udpecho.py | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/Demo/sockets/echosvr.py b/Demo/sockets/echosvr.py index a0435b59bc..d4a23f04a8 100755 --- a/Demo/sockets/echosvr.py +++ b/Demo/sockets/echosvr.py @@ -1,4 +1,4 @@ -#! /usr/local/python +#! /usr/local/bin/python # Python implementation of an 'echo' tcp server: echo all data it receives. # diff --git a/Demo/sockets/finger.py b/Demo/sockets/finger.py index 01c0b6cc2e..71e307ffa6 100755 --- a/Demo/sockets/finger.py +++ b/Demo/sockets/finger.py @@ -1,4 +1,4 @@ -#! /usr/local/python +#! /usr/local/bin/python # Python interface to the Internet finger daemon. # diff --git a/Demo/sockets/telnet.py b/Demo/sockets/telnet.py index 20d14c38fe..3bb36efdc2 100755 --- a/Demo/sockets/telnet.py +++ b/Demo/sockets/telnet.py @@ -1,4 +1,4 @@ -#! /usr/local/python +#! /usr/local/bin/python # Minimal interface to the Internet telnet protocol. # diff --git a/Demo/sockets/throughput.py b/Demo/sockets/throughput.py index 6ffcaa80bb..f1607f316e 100755 --- a/Demo/sockets/throughput.py +++ b/Demo/sockets/throughput.py @@ -1,4 +1,4 @@ -#! /usr/local/python +#! /usr/local/bin/python # Test network throughput. # diff --git a/Demo/sockets/udpecho.py b/Demo/sockets/udpecho.py index 0e1efc7158..8839eb8057 100755 --- a/Demo/sockets/udpecho.py +++ b/Demo/sockets/udpecho.py @@ -1,4 +1,4 @@ -#! /usr/local/python +#! /usr/local/bin/python # Client and server for udp (datagram) echo. # |