(value)
| 807 | raise TypeError("str expected, not %s" % type(value).__name__) |
| 808 | return value.encode(encoding, 'surrogateescape') |
| 809 | def decode(value): |
| 810 | return value.decode(encoding, 'surrogateescape') |
| 811 | encodekey = encode |
| 812 | data = environ |
| 813 | return _Environ(data, |
nothing calls this directly
no test coverage detected
searching dependent graphs…