[issue1953] Compact int and float freelists

2013-06-24 Thread Christian Heimes
Changes by Christian Heimes : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue1953] Compact int and float freelists

2011-12-27 Thread Antoine Pitrou
Antoine Pitrou added the comment: I don't know what the purpose of this feature is nor who the target users are. Trying to micro-manage the interpreter's resource allocation from Python code is certainly a losing battle, and does not warrant relying on implementation-specific APIs. Moreover,

[issue1953] Compact int and float freelists

2011-12-24 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: -BreamoreBoy versions: +Python 3.3 -Python 3.2 ___ Python tracker ___ ___ Python-bugs-list mailing

[issue1953] Compact int and float freelists

2010-09-20 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: The remarks above haven't been addressed. The feature is OK, but the patch is not yet perfect. -- nosy: +amaury.forgeotdarc ___ Python tracker __

[issue1953] Compact int and float freelists

2010-09-20 Thread Mark Lawrence
Mark Lawrence added the comment: I've set the stage to patch review becasue I think this reflects the accepted resolution. I don't understand why this hasn't been committed, anyone? -- nosy: +BreamoreBoy stage: -> patch review ___ Python tracker

[issue1953] Compact int and float freelists

2010-07-09 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.6, Python 3.0 ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue1953] Compact int and float freelists

2008-02-03 Thread Neal Norwitz
Neal Norwitz added the comment: I think sys is appropriate for clearing the cache. Lib/test/regrtest.py still has a reference to gc rather than sys. Why do the CompactFreeList APIs return an int that is always 0? Seems like they should return a real value or be void. I'm not sure why you chan

[issue1953] Compact int and float freelists

2008-01-30 Thread Christian Heimes
Christian Heimes added the comment: I've moved the methods back to the sys module and added API docs for the C and Python code. -- title: gc.compact_freelists -> Compact int and float freelists Added file: http://bugs.python.org/file9325/trunk_compact_freelist2.patch ___