"Native" strings (which are always implemented using the type named str ) that are used for request/response headers and metadata
Currently, in Python2, TestApp does not validate that a WSGI application being tested is returning native strings for headers. This pull request adds that check.
Fixes #119
According to PEP 3333,
Currently, in Python2,
TestApp
does not validate that a WSGI application being tested is returning native strings for headers. This pull request adds that check.