[issue3050] Implement PEP 371: multiprocessing module

2008-06-06 Thread Alec Thomas
Changes by Alec Thomas <[EMAIL PROTECTED]>: -- nosy: +alecthomas ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue3050> ___ __

[issue2321] return more memory from unicode objects to system

2008-03-17 Thread Alec Thomas
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

[issue2321] return more memory from unicode objects to system

2008-03-17 Thread Alec Thomas
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