[issue6319] bdist_msi runs out of memory for large packages

2009-06-21 Thread Steven Bethard
Steven Bethard added the comment: Done in r73499 and r73500. Thanks! -- resolution: accepted -> fixed status: open -> closed ___ Python tracker ___ __

[issue6319] bdist_msi runs out of memory for large packages

2009-06-21 Thread Martin v . Löwis
Martin v. Löwis added the comment: The patch is fine, please apply. -- nosy: +loewis resolution: -> accepted ___ Python tracker ___ _

[issue6319] bdist_msi runs out of memory for large packages

2009-06-21 Thread Steven Bethard
New submission from Steven Bethard : Right now, bdist_msi can run out of memory when used for larger packages. (I found this problem working with NLTK.) The solution is really simple - just add a db.Commit() so that stuff gets flushed to disk more often. The attached patch does just that. I set