Skip to content

Commit d8c87f8

Browse files
committed
pprint: Add dummy pprint() function.
1 parent d0c6ae0 commit d8c87f8

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pprint/pprint.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
def pformat(obj):
22
return repr(obj)
3+
4+
def pprint(obj):
5+
print(repr(obj))

0 commit comments

Comments
 (0)