SIGN IN SIGN UP

Correct the documented default encoding (GH-18429)

From the source for `PyUnicode_Decode`, the implementation is:
```
if (encoding == NULL) {
    return PyUnicode_DecodeUTF8Stateful(s, size, errors, NULL);
}
```
which is pretty clearly not defaulting to ASCII.

---

I assume this needs neither a news entry nor bpo link.
E
Eric Wieser committed
bf15d5b775c31e65584926998ff141edc75226d4
Parent: 95d024d
Committed by GitHub <noreply@github.com> on 2/10/2020, 11:32:18 PM