This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author nnorwitz
Recipients nnorwitz
Date 2008-03-17.15:48:20
SpamBayes Score 0.053846486
Marked as misclassified No
Message-id <1205768902.73.0.245115475399.issue2321@psf.upfronthosting.co.za>
In-reply-to
Content
This patch returns more memory to the system when doing:

  >>> x = [unicode(i) for i in xrange(1000000)]
  >>> del x

If the above code is done, the memory before and after is quite
different.  After this patch, the memory of the process as reported by
the system (like top/ps) should be approximately the same
History
Date User Action Args
2008-03-17 15:48:22nnorwitzsetspambayes_score: 0.0538465 -> 0.053846486
recipients: + nnorwitz
2008-03-17 15:48:22nnorwitzsetspambayes_score: 0.0538465 -> 0.0538465
messageid: <1205768902.73.0.245115475399.issue2321@psf.upfronthosting.co.za>
2008-03-17 15:48:22nnorwitzlinkissue2321 messages
2008-03-17 15:48:21nnorwitzcreate