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 facundobatista
Recipients facundobatista, gtang
Date 2008-06-08.16:01:36
SpamBayes Score 0.004803425
Marked as misclassified No
Message-id <1212940898.92.0.362932326139.issue3063@psf.upfronthosting.co.za>
In-reply-to
Content
Confirmed the issue in the trunk right now:

(the number between square brackets point to the 'top' information below)

facundo@pomcat:~/devel/reps/python/trunk$ ./python 
Python 2.6a3+ (trunk:64009, Jun  7 2008, 09:51:56) 
[GCC 4.2.3 (Ubuntu 4.2.3-2ubuntu7)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
[1]
>>> data = [0.0 for i in xrange(100000000)]
[2]
>>> from random import random
>>> for i in xrange(100000000):
...     data[i] = random()
... 
>>> 
[3]


The memory consumption:

     PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  COMMAND    
[1] 4054 facundo   20   0  5032 3264 1796 S  0.0  0.2   0:00.02 python
[2] 4054 facundo   20   0  414m 384m 1888 S  0.0 19.1   0:17.72 python
[3] 4054 facundo   20   0 1953m 1.4g 1952 S  0.0 70.7   1:01.40 python
History
Date User Action Args
2008-06-08 16:01:39facundobatistasetspambayes_score: 0.00480343 -> 0.004803425
recipients: + facundobatista, gtang
2008-06-08 16:01:38facundobatistasetspambayes_score: 0.00480343 -> 0.00480343
messageid: <1212940898.92.0.362932326139.issue3063@psf.upfronthosting.co.za>
2008-06-08 16:01:38facundobatistalinkissue3063 messages
2008-06-08 16:01:37facundobatistacreate