diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-03-11 22:53:45 +0000 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-03-11 22:53:45 +0000 |
commit | 90f5ba538bf40bcf4fd41049c7bf4296d3ffc9c7 (patch) | |
tree | 37b97cf0f76dd747214492f49125d8dfe8220420 /Demo/sockets | |
parent | e8c1f95090c35bef099c88be69dd1d1311527264 (diff) | |
download | cpython-git-90f5ba538bf40bcf4fd41049c7bf4296d3ffc9c7.tar.gz |
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 7de63915bf..6f7030e5bc 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 e8b9ed2b08..4d493917ab 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 c287319c2e..bd29ec0d83 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 b7f85567aa..6ce7c6d406 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 b654dc270e..7dcf979440 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 d745cc7ca0..e244d6cbc1 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 038036ffc6..fb36faf82e 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 64244aaaf5..59543160e5 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 9966fd86a4..6983a1f7cb 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. # |