[Cython] Broken list multiplication

R. Andrew Ohana andrew.ohana at gmail.com
Tue Jan 28 23:34:10 CET 2014


It seems like eaca39b00b1451fe6c846a0a670e4c8b39935525 broke some (very
simple) instances of list multiplication when there are at least 3 terms in
the product. e.g. on my system I'm getting these results:

L = [None] * 2 * 3
print(len(L))
3

L = 2 * [None] * 3
print(len(L))
3

L = [None] * 2 * 3 * 5
print(len(L))
5

-- 
Andrew
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/cython-devel/attachments/20140128/6d237f27/attachment.html>


More information about the cython-devel mailing list