diff options
author | Guido van Rossum <guido@python.org> | 1997-01-29 16:03:45 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-01-29 16:03:45 (GMT) |
commit | fc167c6ba2b3aedb3e1e114bc9a2d1a793d5c2bd (patch) | |
tree | 8f14190034b526df40319dd39002e47ae0de498a /Lib/test/test_socket.py | |
parent | efb4609c4ab1691b40b5b9884442aa3a1476d80c (diff) | |
download | cpython-fc167c6ba2b3aedb3e1e114bc9a2d1a793d5c2bd.zip cpython-fc167c6ba2b3aedb3e1e114bc9a2d1a793d5c2bd.tar.gz cpython-fc167c6ba2b3aedb3e1e114bc9a2d1a793d5c2bd.tar.bz2 |
Did nobody ever notice that "make test" didn't print the summary line
any more? This was because the *parent* process in test_socket.py did
an os._exit(0)! Getting rid of that now...
Diffstat (limited to 'Lib/test/test_socket.py')
-rw-r--r-- | Lib/test/test_socket.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py index c27e69f..1e157b9 100644 --- a/Lib/test/test_socket.py +++ b/Lib/test/test_socket.py @@ -122,7 +122,6 @@ try: print 'received:', data conn.send(data) conn.close() - os._exit(0) else: try: # child is client |