diff -r d5ebcf8f6855 -r 0eb8c4df61bd tests/printrepr.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/printrepr.py Sun May 17 02:31:12 2009 +0200 @@ -0,0 +1,11 @@ +#!/usr/bin/env python +# +# Copyright 2009 Matt Mackall and others +# +# This software may be used and distributed according to the terms of the +# GNU General Public License version 2, incorporated herein by reference. + +"""prints repr(sys.stdin) but preserves newlines in input""" + +import sys +print repr(sys.stdin.read())[1:-1].replace('\\n', '\n'),