tests/printrepr.py
changeset 8448 0eb8c4df61bd
parent 8445 0a06ae261392
child 10263 25e572394f5c
--- /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 <mpm@selenic.com> 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'),