/usr/lib/python3/dist-packages/restless/utils.py is in python3-restless 2.1.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | import datetime
import decimal
import json
import traceback
import uuid
class MoreTypesJSONEncoder(json.JSONEncoder):
"""
A JSON encoder that allows for more common Python data types.
In addition to the defaults handled by ``json``, this also supports:
* ``datetime.datetime``
* ``datetime.date``
* ``datetime.time``
* ``decimal.Decimal``
* ``uuid.UUID``
"""
def default(self, data):
if isinstance(data, (datetime.datetime, datetime.date, datetime.time)):
return data.isoformat()
elif isinstance(data, decimal.Decimal) or isinstance(data, uuid.UUID):
return str(data)
else:
return super(MoreTypesJSONEncoder, self).default(data)
def format_traceback(exc_info):
stack = traceback.format_stack()
stack = stack[:-2]
stack.extend(traceback.format_tb(exc_info[2]))
stack.extend(traceback.format_exception_only(exc_info[0], exc_info[1]))
stack_str = "Traceback (most recent call last):\n"
stack_str += "".join(stack)
# Remove the last \n
stack_str = stack_str[:-1]
return stack_str
|