diff options
author | Tim Peters <tim.peters@gmail.com> | 2004-07-18 05:56:09 +0000 |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2004-07-18 05:56:09 +0000 |
commit | acbad78022027cf7d94c4b9d60b1a1f44441ad93 (patch) | |
tree | 14b5d932bfeabeaa6211324e00c2095ce59f3e44 /Demo/sockets/unicast.py | |
parent | 1ce4f9a188c50a72e4eb91fec4480f31e6fec025 (diff) | |
download | cpython-acbad78022027cf7d94c4b9d60b1a1f44441ad93.tar.gz |
Whitespace normalization. Ran reindent.py over the entire source tree.
Diffstat (limited to 'Demo/sockets/unicast.py')
-rw-r--r-- | Demo/sockets/unicast.py | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/Demo/sockets/unicast.py b/Demo/sockets/unicast.py index 0a30f3560f..dd15e3c7b9 100644 --- a/Demo/sockets/unicast.py +++ b/Demo/sockets/unicast.py @@ -9,8 +9,6 @@ s = socket(AF_INET, SOCK_DGRAM) s.bind(('', 0)) while 1: - data = repr(time.time()) + '\n' - s.sendto(data, ('', MYPORT)) - time.sleep(2) - - + data = repr(time.time()) + '\n' + s.sendto(data, ('', MYPORT)) + time.sleep(2) |