From: Guido van Rossum Date: Sun, 25 Oct 1992 19:20:23 +0000 (+0000) Subject: Use /usr/local/bin/python X-Git-Tag: v0.9.8~101 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f3994ff9e73e0c5e21951fbacb455f9f69e908b3;p=thirdparty%2FPython%2Fcpython.git Use /usr/local/bin/python --- diff --git a/Demo/sockets/echosvr.py b/Demo/sockets/echosvr.py index a0435b59bc2b..d4a23f04a815 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 01c0b6cc2e24..71e307ffa65f 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 20d14c38fe27..3bb36efdc203 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 6ffcaa80bba7..f1607f316e7f 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 0e1efc715893..8839eb805769 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. #