From: Guido van Rossum Date: Wed, 29 Jan 1997 16:03:45 +0000 (+0000) Subject: Did nobody ever notice that "make test" didn't print the summary line X-Git-Tag: v1.5a1~416 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fc167c6ba2b3aedb3e1e114bc9a2d1a793d5c2bd;p=python 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... --- diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py index c27e69f4ef..1e157b9ca8 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