ronaldinho_x86

Results 31 issues of ronaldinho_x86

now i got a new error, ``` File "/home/ronaldinho/xxx/xxx/venv/lib/python3.9/site-packages/loguru/_logger.py", line 939, in add handler = Handler( File "/home/ronaldinho/xxx/xxx/venv/lib/python3.9/site-packages/loguru/_handler.py", line 86, in __init__ self._queue = multiprocessing.SimpleQueue() File "/home/ronaldinho/.pyenv/versions/3.9.4/lib/python3.9/multiprocessing/context.py", line 113, in...

question

l got error sometimes, but not 100% ``` --- Logging error in Loguru Handler #1 --- Record was: None Traceback (most recent call last): File "C:\Users\Ronaldinho\.virtualenvs\xxx-5Vbn2Ffj\lib\site-packages\loguru\_handler.py", line 270, in _queued_writer...

enhancement

``` python logger_a = logger.bind(name="a") logger_a.remove() logger_a.add("specific.log") logger_b = logger.bind(name="b") logger_a.info("Message A") logger_b.info("Message B") logger.info("test") ``` i mean to get a logger for specific.log with some special format, but when...

feature

### Feature Request i wish have a tray icon to see if my sevice is running well and can be controled conveniently (start/stop/restart)

new-feature

``` python import asyncio from aredis import StrictRedis from aredis.lock import Lock async def main(): redis = StrictRedis(host='127.0.0.1', port=6379, db=0, encoding="utf8", decode_responses=True) async with Lock(redis=redis, name="XXX", timeout=5, blocking=False): redis.hset("aaa", "xxx")...

i am runing a complicated script, in somewhere i just use ``` window["xxxx"] = "xxx" ``` then i got "ReferenceError: xxxx is not defined" is it a bug?

if i call py function in async, then will cause exception ``` python import asyncio import time import v8py class Test(): async def aysnc_func(self): for i in range(0, 3): print("sleep...

``` python >>> ctx.expose(print) >>> ctx.eval('print') >>> ctx.eval('print()') Traceback (most recent call last): File "", line 1, in v8py.JSException: TypeError: print is not a function >>> ctx.eval('typeof print') 'object' ```

i guess we should split the filelogger to use another formatter that not use color, or it will be a mess. [D 210715 10:47:45 main:20] hello world [D 210715 10:47:58...