[issue17187] Python segfaults from improperly formed and called function

2017-06-22 Thread Benjamin Peterson
Changes by Benjamin Peterson : -- resolution: -> not a bug stage: needs patch -> resolved status: pending -> closed ___ Python tracker ___ __

[issue17187] Python segfaults from improperly formed and called function

2017-06-22 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I suggest to close this issue as "not a bug" or "wont fix". -- nosy: +serhiy.storchaka status: open -> pending ___ Python tracker ___

[issue17187] Python segfaults from improperly formed and called function

2013-02-15 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- nosy: +terry.reedy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue17187] Python segfaults from improperly formed and called function

2013-02-12 Thread Benjamin Peterson
Benjamin Peterson added the comment: In general, you can generate whatever junky bytecode you want, and the eval loop will happy crash itself. Your on your own when screwing with types.CodeType. -- nosy: +benjamin.peterson ___ Python tracker

[issue17187] Python segfaults from improperly formed and called function

2013-02-12 Thread Ramchandra Apte
Ramchandra Apte added the comment: > Perhaps types.CodeType should refuse to generate the malformed code object in > the first place? Yup. -- nosy: +ramchandra.apte ___ Python tracker _

[issue17187] Python segfaults from improperly formed and called function

2013-02-11 Thread Larry Hastings
Changes by Larry Hastings : -- keywords: +patch Added file: http://bugs.python.org/file29044/lch.bandaid.for.malformed.fn.crash.1.patch ___ Python tracker ___ __

[issue17187] Python segfaults from improperly formed and called function

2013-02-11 Thread Larry Hastings
New submission from Larry Hastings: Python 3.3 added a nice new feature: if you don't supply enough positional parameters to a function, it tells you the names of the positional parameters you omitted. Unfortunately, the code that prints this error message assumes that the function is well-fo