"KraftDiner" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > So what type / class should one use to represent a 16 bit integers > (signed or unsigned)?
For most purposes, Python just has integers, with 'small' ones (depending on the machine) handled more efficiently. For special purposes, you may want to use the array or struct modules. tjr -- http://mail.python.org/mailman/listinfo/python-list