Delgan

Results 639 comments of Delgan

Thank you for the explanation. ;) I thought it was the easiest way to deal with ANSI codes, but I now realize that it's not very clean to mix the...

Haha. I find the syntax highlighting rather welcome and enjoyable. 👍 I thought it could easily be extended, but it appears that this is not the case. Indeed, it is...

@Qix- I ticked the fixed issues. Actually, there isn't many "Python 3 only" bugs. Some of the encoding issues I listed are in fact no so much related to encoding....

@Qix- I suppose once one is used to Docker + CircleCI, it become as easy as setup than Travis. Two things to add: * Actually, current Travis CI **do** test...

@Qix- I realized there is actually a problem with this solution. Given this code runing on `ascii` terminal: ```python a = "天" "天" * a ``` Without `better_exceptions`: ``` Traceback...

Good catch! I think this is [implemented](https://github.com/Qix-/better-exceptions/blob/1c82a8f8e53b9a04a79b865d2816d8890b1c1362/better_exceptions/formatter.py#L117) but not yet released.

It seems it's a regression, it was already fixed with: * https://github.com/microsoft/vscode-cpptools/issues/5741

@sean-mcmanus Indeed, sorry for calling this a regression. I thought it worked some times ago, I must have been dreaming. Following your advice, I opened a "feature request" ticket here:...

Technically it's correct code. Basically, I would never consider this a error within Loguru. However, it may be interesting to warn Mypy users about possible misuse. Most of the time,...

There are different possible errors "at runtime", I guess we can figure out some of them by looking at the `raise` statements in the `loguru` sources. Here are some examples...