Returns wsgi-compatible string
(string, encoding="utf-8")
| 198 | |
| 199 | # Related: https://github.com/Miserlou/Zappa/issues/1199 |
| 200 | def get_wsgi_string(string, encoding="utf-8"): |
| 201 | """ |
| 202 | Returns wsgi-compatible string |
| 203 | """ |
| 204 | return string.encode(encoding).decode("iso-8859-1") |
no outgoing calls
no test coverage detected