[issue1098732] Enhance tracebacks and stack traces with vars

2009-02-16 Thread Skip Montanaro
Skip Montanaro added the comment: PyPI: http://pypi.python.org/pypi/tb ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1098732] Enhance tracebacks and stack traces with vars

2009-02-16 Thread Martin v. Löwis
Martin v. Löwis added the comment: > It could still be a nice addition to the traceback module: If it doesn't have to be in the standard library, I'd rather see it as a cookbook recipe, or PyPI package. I think the debate is still open whether, as an addition to traceback module, it would be "n

[issue1098732] Enhance tracebacks and stack traces with vars

2009-02-16 Thread Skip Montanaro
Skip Montanaro added the comment: Martin> If it becomes a sys.excepthook, it doesn't need to be part of Martin> Python anymore; any user could install it as a recipe if they Martin> desire. Martin> Hence I'm rejecting the patch. It could still be a nice addition to the traceback mo

[issue1098732] Enhance tracebacks and stack traces with vars

2009-02-16 Thread Martin v. Löwis
Martin v. Löwis added the comment: If it becomes a sys.excepthook, it doesn't need to be part of Python anymore; any user could install it as a recipe if they desire. Hence I'm rejecting the patch. -- resolution: -> rejected status: open -> closed

[issue1098732] Enhance tracebacks and stack traces with vars

2009-02-15 Thread Skip Montanaro
Skip Montanaro added the comment: How about reformulating it as a function appropriate as sys.excepthook? ___ Python tracker ___ ___ Python-

[issue1098732] Enhance tracebacks and stack traces with vars

2009-02-14 Thread Antoine Pitrou
Antoine Pitrou added the comment: It would certainly be horrible to enable this by default. Think about intermediate functions having 10 local variables each, most of which are totally irrelevant. -- nosy: +pitrou ___ Python tracker

[issue1098732] Enhance tracebacks and stack traces with vars

2009-02-14 Thread Daniel Diniz
Daniel Diniz added the comment: Maybe this could be enabled only on the interactive interpreter? Skip's patch includes tests and docs, needs updating. -- nosy: +ajaksu2 ___ Python tracker _