]> granicus.if.org Git - python/commit
Patch from Michael Hudson to fix flatten recursive data structures:
authorAndrew M. Kuchling <amk@amk.ca>
Mon, 19 Jun 2000 00:55:09 +0000 (00:55 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Mon, 19 Jun 2000 00:55:09 +0000 (00:55 +0000)
commit288e97b7fefb9b766b77a858fc34003c6d259d98
treee2fc7db0e3573130cc1928c21605702837c22fad
parent49ef6dc1f44c6d831fdd5c127b424cb5ecef2b78
Patch from Michael Hudson to fix flatten recursive data structures:
[mwh21@atrus build]$ ./python
>>> import Tkinter
>>> l = []
>>> l.append(l)
>>> Tkinter._flatten(l)
Segmentation fault (core dumped)
Modules/_tkinter.c