Is there anything similar to chr(65) for creating a single byte string that doesn't involve creating an intermediate string or tuple object? bytes(chr(65)) bytes((65,)) both seem slightly weird. Greg