Bob Ippolito wrote:
> How would you embed raw bytes if the string was unicode?
The most direct notation would be
bytes("delimited packet\x00")
However, people might not understand what is happening, and
Guido doesn't like it if the bytes are >127.
Regards,
Martin