Ilia Khaustov
Results
3
comments of
Ilia Khaustov
Actually it seems like a bug, because even on Python 3.9 I have the same error
``` def hello(request): return request.Response(json=['invalid', 'json']) ```
Finally figured out what it is all about. ``` from japronto import Application app = Application() def hello(request): try: return request.Response(json=object()) except TypeError: return request.Response(code=500) # RuntimeError due to immutable...