# HG changeset patch # User Augie Fackler # Date 1518925152 18000 # Node ID c95c8ab2e7ec13e4a35619d7f31cb2d7f9500b43 # Parent 0cacd4df6eb086c4352ce0c3d1a4d6ab832f2375 tests: fix get-with-headers.py on python3 when writing to stdout Differential Revision: https://phab.mercurial-scm.org/D2306 diff -r 0cacd4df6eb0 -r c95c8ab2e7ec tests/get-with-headers.py --- a/tests/get-with-headers.py Sat Feb 17 22:38:53 2018 -0500 +++ b/tests/get-with-headers.py Sat Feb 17 22:39:12 2018 -0500 @@ -76,7 +76,7 @@ if args.bodyfile: bodyfh = open(args.bodyfile, 'wb') else: - bodyfh = sys.stdout + bodyfh = getattr(sys.stdout, 'buffer', sys.stdout) # Pretty print JSON. This also has the beneficial side-effect # of verifying emitted JSON is well-formed.