aws / aws-lambda-python-runtime-interface-client

Apache License 2.0
258 stars 73 forks source link

Use unicode chars instead of escape sequences in json encoder output and bump simplejson version #88

Closed mdsakalu closed 10 months ago

mdsakalu commented 1 year ago

Fixes #87 and Fixes #62

Make the Encoder class in lambda_runtime_marshaller use actual unicode characters in the encoded output instead of unicode escape sequences. This matters because unicode escape sequences contribute more bytes to the response size.

Also bump simplejson version for Python 3.9 compatibility.

By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.

briensea commented 10 months ago

Thanks for contributing!