# HG changeset patch # User Pierre-Yves David # Date 1358342779 -3600 # Node ID f1118507174b87df64115ebd3bfd45ee2e21932f # Parent 66cec3c2ee00abbcaa0813eb01f34f7123eb3b49 get-with-headers: add a --headeronly switch In some case we do not care about the actual rendering. diff -r 66cec3c2ee00 -r f1118507174b tests/get-with-headers.py --- a/tests/get-with-headers.py Tue Jan 15 22:08:47 2013 -0600 +++ b/tests/get-with-headers.py Wed Jan 16 14:26:19 2013 +0100 @@ -16,6 +16,10 @@ if '--twice' in sys.argv: sys.argv.remove('--twice') twice = True +headeronly = False +if '--headeronly' in sys.argv: + sys.argv.remove('--headeronly') + headeronly = True reasons = {'Not modified': 'Not Modified'} # python 2.4 @@ -37,13 +41,13 @@ for h in [h.lower() for h in show]: if response.getheader(h, None) is not None: print "%s: %s" % (h, response.getheader(h)) + if not headeronly: + print + data = response.read() + sys.stdout.write(data) - print - data = response.read() - sys.stdout.write(data) - - if twice and response.getheader('ETag', None): - tag = response.getheader('ETag') + if twice and response.getheader('ETag', None): + tag = response.getheader('ETag') return response.status