Andy Kipp

Results 470 comments of Andy Kipp

@jnoortheen what do you think?

@jnoortheen sorry, I'm not clearly understand what you mean. Please give me some pointers. 1. "message when the return is a 3 tuple value" - but the goal is to...

@jnoortheen Thank you for the link! Why we are talking about `return` if this PR is to capture the `Exception` and show what alias raised it?

Thank you @jnoortheen! @gforsyth please take a look as well!

@gforsyth It's ready to review. One question: what do you think is it possible to print full traceback with the error line?

@gforsyth yep, I mean when I'm doing this: ```xsh def f(): 1/0 class qwe: def __init__(self,g): self.f=g def __call__(self): self.f() try: qwe(f)() except Exception: raise ``` I have full traceback...

@gforsyth I think this behavior is not from this PR. There is general issue around raising exception from alias and having hard exception from closed descriptor - https://github.com/xonsh/xonsh/issues/5393 I think...

@gforsyth hey! 1. I traced the issue you faced with and made notes in https://github.com/xonsh/xonsh/pull/4662#issuecomment-2105511161 and created task #5405 2. I changed the code in this PR to have soft...

I can't reproduce this. Please provide your `xonfig` as well as example.

Example for playing with Popen and fzf (it works perfect on macOS and also when ran from xonsh): ```python # This is the same as bash `ls / | fzf...