Paul Rubin wrote: > David Bear <[EMAIL PROTECTED]> writes: > >>I'm not seeing it in my python essential ref. how can I do >> >>delim = 0x15 > > > delim = chr(0x15)
Ooooh -- a function with a constant arg; I wonder what that evaluates to? >>> chr(0x15) '\x15' Sheeeesh. -- http://mail.python.org/mailman/listinfo/python-list