alecov

Results 15 comments of alecov

> It still required the elements remain sorted. This check probably costed a bit. Regardless, I see little point in offering bisects if their indexes cannot really be used as...

Hi Meherett, Sure thing, I'll take a look at that. Thanks, On Mon, Feb 28, 2022 at 4:20 AM Meheret Tesfaye ***@***.***> wrote: > Hello @alecov , Can you fix...

Facing the same issue here, the system crashes when streaming video via any browser. Sometimes there is no log available. This is from my crash: ``` May 25 20:29:37 raspberrypi...

Hi @seandstewart, thanks for your detailed explanation. I'm aware of the behavior regarding order of operations in asyncio and use cases for tasks, and I think my use case still...

@Andrew-Chen-Wang @vinipsmaker Yeah, the following three are all conceptually similar (mind the details not): ```python retval = await coro() ``` ```python task = asyncio.create_task(coro()) retval = await task ``` ```python...

@abrookins The Greeter example is rather simple to get if you understand how the scheduler works, so let me attempt to clarify things for you. After running this code: ```python...

Delving a bit further, if an asyncio lock is used to protect the pubsub object: ```python import asyncio import aioredis from contextvars import ContextVar redis = aioredis.from_url("redis://localhost") pubsub = redis.pubsub()...

@abrookins Just a quick followup, I'll be _really_ busy during the next two weeks, so I'll only be able to take a deeper look at your PR after that. I...

@yp05327 Sorry for the delay. The user is owner of an organization. I have created a project and am trying to assign an issue to said project, then that error...

> There's a bug in old versions, but it should be fixed in #23675 🤔 > > Maybe the root reason is broken data in DB. So if you can...