[issue34214] Pylint recusion stack overflow abort

2019-05-06 Thread Cheryl Sabella
Cheryl Sabella added the comment: Thank you for the research. I'm closing this as third party. -- nosy: +cheryl.sabella resolution: -> third party stage: -> resolved status: open -> closed ___ Python tracker

[issue34214] Pylint recusion stack overflow abort

2019-05-06 Thread anthony shaw
anthony shaw added the comment: I agree with Jerome, that handling recursion errors is a part of a 3rd party package and not a bug with CPython. -- nosy: +anthony shaw ___ Python tracker

[issue34214] Pylint recusion stack overflow abort

2019-05-03 Thread Jeroen Demeyer
Jeroen Demeyer added the comment: What seems to be happening is a recursion error while handling a recursion error. Essentially >>> def f(): ... try: ... f() ... except: ... f() ... >>> f() Fatal Python error: Cannot recover from stack overflow. So unless I'm

[issue34214] Pylint recusion stack overflow abort

2019-05-03 Thread Jeroen Demeyer
Jeroen Demeyer added the comment: FYI: this one-liner installs the crashing versions: pip3 install git+https://github.com/nickdrozd/astroid.git@crash git+https://github.com/nickdrozd/pylint.git@crash -- nosy: +jdemeyer ___ Python tracker

[issue34214] Pylint recusion stack overflow abort

2019-04-29 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- nosy: +eric.smith, nanjekyejoannah, ncoghlan ___ Python tracker ___ ___ Python-bugs-list mailing

[issue34214] Pylint recusion stack overflow abort

2018-07-24 Thread Nick Drozd
New submission from Nick Drozd : In certain very, very specific circumstances, Pylint can cause the interpreter to abort with a stack overflow error. I've seen this issue on 3.5, 3.6, and 3.8 (I assume it affects 3.7 as well) and on both Mac and Ubuntu. It requires: * 1.7 <= Pylint