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 Kevin.Dyer
Recipients Kevin.Dyer
Date 2014-10-08.18:33:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1412793209.1.0.692810866448.issue22583@psf.upfronthosting.co.za>
In-reply-to
Content
The following can be used to generate a file called mega_concat.py:

N = 2**17
my_array = []
for i in range(N):
  my_array.append("\"\"")
print '+'.join(my_array)

Then, on Ubuntu 14.04, 32-bit:

$ python mega_concat.py 
Segmentation fault (core dumped)
$ python3 mega_concat.py 
RuntimeError: maximum recursion depth exceeded during compilation

Seems like this is a simple out-of-memory issue.
History
Date User Action Args
2014-10-08 18:33:29Kevin.Dyersetrecipients: + Kevin.Dyer
2014-10-08 18:33:29Kevin.Dyersetmessageid: <1412793209.1.0.692810866448.issue22583@psf.upfronthosting.co.za>
2014-10-08 18:33:29Kevin.Dyerlinkissue22583 messages
2014-10-08 18:33:28Kevin.Dyercreate