diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-03-11 22:53:45 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-03-11 22:53:45 (GMT) |
commit | 90f5ba538bf40bcf4fd41049c7bf4296d3ffc9c7 (patch) | |
tree | 37b97cf0f76dd747214492f49125d8dfe8220420 /Demo/sockets | |
parent | e8c1f95090c35bef099c88be69dd1d1311527264 (diff) | |
download | cpython-90f5ba538bf40bcf4fd41049c7bf4296d3ffc9c7.zip cpython-90f5ba538bf40bcf4fd41049c7bf4296d3ffc9c7.tar.gz cpython-90f5ba538bf40bcf4fd41049c7bf4296d3ffc9c7.tar.bz2 |
convert shebang lines: python -> python3
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/mcast.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 |
9 files changed, 9 insertions, 9 deletions
diff --git a/Demo/sockets/echosvr.py b/Demo/sockets/echosvr.py index 7de6391..6f7030e 100755 --- a/Demo/sockets/echosvr.py +++ b/Demo/sockets/echosvr.py @@ -1,4 +1,4 @@ -#! /usr/bin/env python +#! /usr/bin/env python3 # 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 e8b9ed2..4d49391 100755 --- a/Demo/sockets/finger.py +++ b/Demo/sockets/finger.py @@ -1,4 +1,4 @@ -#! /usr/bin/env python +#! /usr/bin/env python3 # Python interface to the Internet finger daemon. # diff --git a/Demo/sockets/gopher.py b/Demo/sockets/gopher.py index c287319..bd29ec0 100755 --- a/Demo/sockets/gopher.py +++ b/Demo/sockets/gopher.py @@ -1,4 +1,4 @@ -#! /usr/bin/env python +#! /usr/bin/env python3 # A simple gopher client. # diff --git a/Demo/sockets/mcast.py b/Demo/sockets/mcast.py index b7f8556..6ce7c6d 100755 --- a/Demo/sockets/mcast.py +++ b/Demo/sockets/mcast.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # # Send/receive UDP multicast packets. # Requires that your OS kernel supports IP multicast. diff --git a/Demo/sockets/rpython.py b/Demo/sockets/rpython.py index b654dc2..7dcf979 100755 --- a/Demo/sockets/rpython.py +++ b/Demo/sockets/rpython.py @@ -1,4 +1,4 @@ -#! /usr/bin/env python +#! /usr/bin/env python3 # Remote python client. # Execute Python commands remotely and send output back. diff --git a/Demo/sockets/rpythond.py b/Demo/sockets/rpythond.py index d745cc7..e244d6c 100755 --- a/Demo/sockets/rpythond.py +++ b/Demo/sockets/rpythond.py @@ -1,4 +1,4 @@ -#! /usr/bin/env python +#! /usr/bin/env python3 # Remote python server. # Execute Python commands remotely and send output back. diff --git a/Demo/sockets/telnet.py b/Demo/sockets/telnet.py index 038036ff..fb36faf 100755 --- a/Demo/sockets/telnet.py +++ b/Demo/sockets/telnet.py @@ -1,4 +1,4 @@ -#! /usr/bin/env python +#! /usr/bin/env python3 # Minimal interface to the Internet telnet protocol. # diff --git a/Demo/sockets/throughput.py b/Demo/sockets/throughput.py index 64244aa..5954316 100755 --- a/Demo/sockets/throughput.py +++ b/Demo/sockets/throughput.py @@ -1,4 +1,4 @@ -#! /usr/bin/env python +#! /usr/bin/env python3 # Test network throughput. # diff --git a/Demo/sockets/udpecho.py b/Demo/sockets/udpecho.py index 9966fd8..6983a1f 100755 --- a/Demo/sockets/udpecho.py +++ b/Demo/sockets/udpecho.py @@ -1,4 +1,4 @@ -#! /usr/bin/env python +#! /usr/bin/env python3 # Client and server for udp (datagram) echo. # |