diff options
author | Guido van Rossum <guido@python.org> | 1996-11-27 19:52:01 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-11-27 19:52:01 (GMT) |
commit | f06ee5fa072931fc807527535c91a46c149a6746 (patch) | |
tree | f5be5d5b642b477eaf52e42de2a7792e2ab91cb7 /Demo/sockets | |
parent | cd612d5e5c330bcc77e593cbc406b4214858aa78 (diff) | |
download | cpython-f06ee5fa072931fc807527535c91a46c149a6746.zip cpython-f06ee5fa072931fc807527535c91a46c149a6746.tar.gz cpython-f06ee5fa072931fc807527535c91a46c149a6746.tar.bz2 |
/usr/local/bin/python -> /usr/bin/env 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/gopher.py | 2 | ||||
-rwxr-xr-x | Demo/sockets/rpython.py | 2 | ||||
-rwxr-xr-x | Demo/sockets/rpythond.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 |
8 files changed, 8 insertions, 8 deletions
diff --git a/Demo/sockets/echosvr.py b/Demo/sockets/echosvr.py index acf0a39..c1acf6c 100755 --- a/Demo/sockets/echosvr.py +++ b/Demo/sockets/echosvr.py @@ -1,4 +1,4 @@ -#! /usr/local/bin/python +#! /usr/bin/env 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 71e307f..b941d0e 100755 --- a/Demo/sockets/finger.py +++ b/Demo/sockets/finger.py @@ -1,4 +1,4 @@ -#! /usr/local/bin/python +#! /usr/bin/env python # Python interface to the Internet finger daemon. # diff --git a/Demo/sockets/gopher.py b/Demo/sockets/gopher.py index f30ab0f..a2ab3a2 100755 --- a/Demo/sockets/gopher.py +++ b/Demo/sockets/gopher.py @@ -1,4 +1,4 @@ -#! /usr/local/bin/python +#! /usr/bin/env python # A simple gopher client. # diff --git a/Demo/sockets/rpython.py b/Demo/sockets/rpython.py index 9548301..77b2a7a 100755 --- a/Demo/sockets/rpython.py +++ b/Demo/sockets/rpython.py @@ -1,4 +1,4 @@ -#! /usr/local/bin/python +#! /usr/bin/env python # Remote python client. # Execute Python commands remotely and send output back. diff --git a/Demo/sockets/rpythond.py b/Demo/sockets/rpythond.py index f67570b..e8cdaa9 100755 --- a/Demo/sockets/rpythond.py +++ b/Demo/sockets/rpythond.py @@ -1,4 +1,4 @@ -#! /usr/local/bin/python +#! /usr/bin/env python # Remote python server. # Execute Python commands remotely and send output back. diff --git a/Demo/sockets/telnet.py b/Demo/sockets/telnet.py index 3bb36ef..e83ce55 100755 --- a/Demo/sockets/telnet.py +++ b/Demo/sockets/telnet.py @@ -1,4 +1,4 @@ -#! /usr/local/bin/python +#! /usr/bin/env python # Minimal interface to the Internet telnet protocol. # diff --git a/Demo/sockets/throughput.py b/Demo/sockets/throughput.py index fd946b4..58975bf 100755 --- a/Demo/sockets/throughput.py +++ b/Demo/sockets/throughput.py @@ -1,4 +1,4 @@ -#! /usr/local/bin/python +#! /usr/bin/env python # Test network throughput. # diff --git a/Demo/sockets/udpecho.py b/Demo/sockets/udpecho.py index 8839eb8..8fce547 100755 --- a/Demo/sockets/udpecho.py +++ b/Demo/sockets/udpecho.py @@ -1,4 +1,4 @@ -#! /usr/local/bin/python +#! /usr/bin/env python # Client and server for udp (datagram) echo. # |