Changes by Alec Thomas <[EMAIL PROTECTED]>:
--
nosy: +alecthomas
___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue3050>
___
__
Alec Thomas <[EMAIL PROTECTED]> added the comment:
> Alec, can you find places that are using the PyMem_* interface and
> create a patch to fix them. That would be great!
Sure thing! I'll see if I can finish it today, but if not I'll work on
it during the fl
Alec Thomas <[EMAIL PROTECTED]> added the comment:
Hi Neal,
This seems to be a more general problem than just unicode.
eg. Tuples:
>>> x = [(1, 2, 3, 4, i) for i in xrange(80)]
>>> del x
And user-defined objects:
>>> class A(object):
... d