Martin v. Löwis wrote:
> Georg Brandl wrote:
>> * I think I've submitted this one to the tracker, but can't remember:
>> It's for PySequence_SetItem and makes something like this possible:
>>
>> tup = ([], )
>> tup[0] += [1]
>
> That definitely needs fixing:
>
> py> tup = ([], )
> py> tup[
Georg Brandl wrote:
> * I think I've submitted this one to the tracker, but can't remember:
> It's for PySequence_SetItem and makes something like this possible:
>
> tup = ([], )
> tup[0] += [1]
That definitely needs fixing:
py> tup = ([], )
py> tup[0] += [1]
Traceback (most recent call la
Hi,
I have two patches lying around here, please comment:
* I think I've submitted this one to the tracker, but can't remember:
It's for PySequence_SetItem and makes something like this possible:
tup = ([], )
tup[0] += [1]
I can upload it once more to allow review.
* One patch for stat