Pandu E POLUAN
Pandu E POLUAN
I think I know what's the problem. I did `awk --version` and it did not return anything. That surprised me, so I did `man awk` and found out that my...
Remnant Quarg visit chooses Esqualine as a desination and can't be completed without a gaslined ship
I forgot, how many passengers to carry in that mission chain? If 1 or 2, then the mission chain needs to be locked until player gets the Penguin or Merganser....
Hmm... you have a point. It seems we invoked the process the wrong way around, and the tests did not catch this because they overrode os.setuid. I'll see how I...
I think I have some ideas on how to implement this, but that'll require some deep changes in the underlying mechanism.
@kesavkolla I'm not familiar with aioredis, so I have to ask: Can you call `create_pool` multiple times? Will there be a deleterious effect? Because if you can do that without...
Won't `asyncio.run` block until `aioredis.create_pool` completes? If that is the case, then probably kesavkolla wants the initialization of aioredis pool to happen concurrently with the initialization of aiosmtpd. (Please CMIIW,...
A 'simple' workaround would be to create a hook, let's say `handle__init__` (notice the pair of dunders), which can be `await`-ed from `SMTP.__init__` The handler class must then implement a...
That said... Why not just create an event loop, have the loop do `call_soon` to the handler's initialization (which involves aioredis.create_pool), then feed the loop to Controller? If the semaphore-like...
Hmm, interesting question. Since deprecation will definitely lead to API incompatibility (of various degrees), SemVer convention dictates that we must increment the Major version number. By having a regular schedule...
Just to add a note for future-me (and future-us), these will be the planned deprecations **for the Python version support** * 3.6: `max(ubuntu_1804.eol, rhel_7.eol, python36.eol)` * 3.7: `max(python37.eol)` -- is...