[issue13389] Clear lists freelist in gc.collect()

2011-11-12 Thread Antoine Pitrou
Antoine Pitrou added the comment: Fix the return values and add documentation. -- Added file: http://bugs.python.org/file23673/listdictfreelist.patch ___ Python tracker ___

[issue13389] Clear lists freelist in gc.collect()

2011-11-12 Thread Antoine Pitrou
Antoine Pitrou added the comment: Dicts also have a freelist which isn't freed either. New patch attached. -- Added file: http://bugs.python.org/file23672/listdictfreelist.patch ___ Python tracker

[issue13389] Clear lists freelist in gc.collect()

2011-11-12 Thread Antoine Pitrou
New submission from Antoine Pitrou : Complete gc collections currently clear all freelists, except for the freelist of list objects. Attached patch fixes the omission. -- components: Interpreter Core files: listfreelist.patch keywords: patch messages: 147530 nosy: pitrou priority: norma