Re: [Cython] Broken list multiplication

2014-01-30 Thread Stefan Behnel
Robert Bradshaw, 29.01.2014 19:10: > Ouch. Between this and the other Sage issue, I feel a small point > release coming up. Any other bug fixes we should get in? I have a couple of pending requests for others to test lxml on Windows and maybe even PyPy, so let's wait another couple of days for the

Re: [Cython] Broken list multiplication

2014-01-29 Thread Robert Bradshaw
On Wed, Jan 29, 2014 at 10:10 AM, Robert Bradshaw wrote: > On Wed, Jan 29, 2014 at 9:03 AM, Stefan Behnel wrote: >> R. Andrew Ohana, 28.01.2014 23:34: >>> It seems like eaca39b00b1451fe6c846a0a670e4c8b39935525 broke some (very >>> simple) instances of list multiplication when there are at least 3

Re: [Cython] Broken list multiplication

2014-01-29 Thread Robert Bradshaw
On Wed, Jan 29, 2014 at 9:03 AM, Stefan Behnel wrote: > R. Andrew Ohana, 28.01.2014 23:34: >> 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 r

Re: [Cython] Broken list multiplication

2014-01-29 Thread Stefan Behnel
R. Andrew Ohana, 28.01.2014 23:34: > 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 =