If anything is to be done in this area, it would be better
as an extension of list comprehensions, e.g.

  [[None times 5] times 10]

which would be equivalent to

  [[None for _i in xrange(5)] for _j in xrange(10)]

--
Greg
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to