Chris Hinsley <[email protected]> wrote: > >Is a Python list as fast as a bytearray ?
Python does not actually have a native array type. Everything in your program that looked like an array was actually a list. -- Tim Roberts, [email protected] Providenza & Boekelheide, Inc. -- http://mail.python.org/mailman/listinfo/python-list
