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 skrah
Recipients lukasz.langa, skip.montanaro, skrah, vlachoudis
Date 2011-02-01.22:06:59
SpamBayes Score 3.5787853e-09
Marked as misclassified No
Message-id <1296598027.64.0.313674385276.issue11089@psf.upfronthosting.co.za>
In-reply-to
Content
If OrderedDict is used, the test case quickly uses 8GB of memory. With
this change (I'm not suggesting this as a fix!), the timings are normal:


Index: Lib/ConfigParser.py
===================================================================
--- Lib/ConfigParser.py (revision 88298)
+++ Lib/ConfigParser.py (working copy)
@@ -92,6 +92,7 @@
 except ImportError:
     # fallback for setup.py which hasn't yet built _collections
     _default_dict = dict
+_default_dict = dict
 
 import re
History
Date User Action Args
2011-02-01 22:07:07skrahsetrecipients: + skrah, skip.montanaro, lukasz.langa, vlachoudis
2011-02-01 22:07:07skrahsetmessageid: <1296598027.64.0.313674385276.issue11089@psf.upfronthosting.co.za>
2011-02-01 22:07:00skrahlinkissue11089 messages
2011-02-01 22:06:59skrahcreate