From d8c87f81533d9f940f4304dbfb2cf06476489f5a Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Thu, 11 May 2017 21:20:24 +0300 Subject: [PATCH] pprint: Add dummy pprint() function. --- pprint/pprint.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pprint/pprint.py b/pprint/pprint.py index 487b61a3..358a9382 100644 --- a/pprint/pprint.py +++ b/pprint/pprint.py @@ -1,2 +1,5 @@ def pformat(obj): return repr(obj) + +def pprint(obj): + print(repr(obj))