New submission from Kevin Dyer:
The following can be used to generate a file called ```mega_concat.py```:
```python
N = 2**17
my_array = []
for i in range(N):
my_array.append("\"\"")
print '+'.join(my_array)
```
Then:
```console
$ python mega_concat.py
Segmentation fault (core dumped)
$ pyth
Kevin Dyer added the comment:
The following can be used to generate a file called ```mega_concat.py```:
```python
N = 2**17
my_array = []
for i in range(N):
my_array.append("\"\"")
print '+'.join(my_array)
```
Then:
```console
$ python mega_concat.py
Segmentation fault (core dumped)
$ python