Delgan

Results 46 issues of Delgan

Hi! I just discovered your library and it's super useful, thanks for sharing! I just encountered a small issue. It seems the `front` and `back` widgets are rebuilt when the...

Hi @Qix- Taking advantage of the fact that we no longer need to support Python 2.7, I think we can largely simplify how we manage strings encoding. This avoids the...

I prefer to gather everything here rather than opening a ticket for each of them, as some bugs are really minimal. Some points are just ideas I have had. -...

bug
enhancement
help wanted

See for example: [Job #30.5](https://travis-ci.org/Qix-/better-exceptions/jobs/231450051) We can see a warning in the logs: ``` ./test_all.sh: line 52: warning: setlocale: LC_ALL: cannot change locale (en_US.ascii) ``` So I guess it is...

bug

Hello @Qix-. So, to explain you the problem I'm facing: I have implemented a few fixes for some edge cases, but I'm not sure how to handle it properly for...

enhancement

### Environment - OS and version: Ubutnu 20.04 - VS Code: 1.72.2 - C/C++ extension: v1.12.4 - OS and version of remote machine (if applicable): Ubuntu 20.04 (dev container) -...

Language Service
Visual Studio
Feature: Doc comments
enhancement

Hi. :) I was interested by your `crtime` library and while taking a look at the code, I realized that it was retrieving creation time using `st_birthtime` on all non-Linux...

For example, the following snippet: ```python from loguru import logger def rec(): rec() try: rec() except Exception: logger.exception("Oups") ``` Should produce the following logs: ```txt 2024-02-17 12:06:00.577 | ERROR |...

enhancement

It should help with catching this kind of problem [referenced in the documentation](https://loguru.readthedocs.io/en/stable/resources/recipes.html#security-considerations-when-using-loguru): ```python SECRET_KEY = 'Y0UC4NTS33Th1S!' class SomeValue: def __init__(self, value): self.value = value # If user types "{value.__init__.__globals__[SECRET_KEY]}"...

enhancement