"Edward C. Jones" <[EMAIL PROTECTED]> wrote:
> That's a good idea. Include everything from m * [n * [0]] to pickling 

Except that it probably doesn't do what you intend...

    >>> a = 2*[3*[0]]
    >>> a
    [[0, 0, 0], [0, 0, 0]]
    >>> a[0][0] = 2
    >>> a
    [[2, 0, 0], [2, 0, 0]]

Unless you intend something like that...

 - Josiah

_______________________________________________
Python-3000 mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000
Unsubscribe: 
http://mail.python.org/mailman/options/python-3000/archive%40mail-archive.com

Reply via email to