Glenn Linderman writes:
> the proposals to embed binary in Unicode by abusing Latin-1
> encoding.
Those aren't "proposals", they are currently feasible techniques in
Python 3 for *some* use cases.
The question is why infecting Python 3 with the byte/character
confoundance virus is preferable to such techniques, especially if
their (serious!) deficiencies are removed by creating a new type such
as asciistr.
"smuggled binary" (great term borrowed from a different subthread)
muddies the waters of what you are dealing with. As long as the
actual data is only Latin-1 and smuggled binary, the technique
probably isn't too bad... you can define the the "smuggled binary"
as a "decoding" of binary to text, sort of like base64 "decodes"
binary to ASCII. And it can be a useful technique.