tests/printrepr.py
author Yuya Nishihara <yuya@tcha.org>
Tue, 18 May 2010 18:55:14 +0900
changeset 11207 1d714c1546b5
parent 10263 25e572394f5c
permissions -rwxr-xr-x
color: bring back colors with pager It's introduced by 3c368a1c962d, but missing in merge changeset at a890cc501501.

#!/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 or any later version.

"""prints repr(sys.stdin) but preserves newlines in input"""

import sys
print repr(sys.stdin.read())[1:-1].replace('\\n', '\n'),