Delgan
Delgan
Hi. This change is intended to fix #217. On Linux, special coloration sequences may be initialized with `38` (foreground) and `48` (bakground) ansi codes. [8-bit](https://en.wikipedia.org/wiki/ANSI_escape_code#8-bit) looks like ``\x1b[38;5;46m`` and [24-bit](https://en.wikipedia.org/wiki/ANSI_escape_code#24-bit)...
Hi. Some terminals support [24-bit ANSI colors](https://en.wikipedia.org/wiki/ANSI_escape_code#24-bit) (aka "true colors") in the form `ESC[ 38;2;;;`. This code: ```python import colorama colorama.init() print("\x1b[38;2;166;226;46m{}\x1b[0m".format("Foo")) ``` Result on Windows:  Result on a...
Hi. Did you noticed that `colorama` was not working on Git Bash for Windows? Steps to reproduce is quite straightfoward: on Windows, run `get-bash.exe`, start the Python interpreter with `python...
> This one caught me with the following pattern: > ```python > import atexit > from loguru import logger > > > logger.info('Hi!') > atexit.register(logger.info, 'Bye!') > > logger.info('Doing stuff...')...
Hi @fantix. As discussed in #88, some earlier versions of Python are missing the `_get_running_loop()` used to implement the `contextvars` backport. It seems complicated to properly fix it. What are...
Hey! I just found a nice library on a [Reddit thread](https://www.reddit.com/r/Python/comments/7y3q3i/python_notification_library_for_windows/) (you probably saw it too) to display Windows 10 "toast" notifications.  Any thoughts about integrating [`zroya`](https://github.com/malja/zroya) or [`Windows-10-Toast-Notifications`](https://github.com/jithurjacob/Windows-10-Toast-Notifications)...
_For context, see #10055 which initiated this ticket._ #### What's the problem this feature will solve? To give a concrete use case example: * I'm using the [`pytest-mypy-plugins`](https://github.com/typeddjango/pytest-mypy-plugins) plugin *...
#### What's the problem this feature will solve? A convenient way to `assert` that two sequences contains the exact same elements regardless of their order. #### Describe the solution you'd...
Hi! Recently I compiled `units` with `DISABLE_PREDEFINED_UNITS=ON` but could not access `contants::PI` despite `ENABLE_PREDEFINED_CONSTANTS_UNITS=ON`. It seems this problem has been reported in #264. Could the fix be that simple?
**Describe the bug** It's possible for a MKV file to contain several video tracks. However, the web client only shows one. **To Reproduce** 1. Create a `.mkv` with multiple video...