EMF_Camp_Badge/upip/pprint.py

6 lines
78 B
Python

def pformat(obj):
return repr(obj)
def pprint(obj):
print(repr(obj))