Results 41 issues of Spencer Baugh

The README says: > One might also draw a comparison with Python's built-in multiprocessing library, but instead of calling code in subprocesses on the same host, the code may be...

First off this library is great, definitely a much nicer way to define DNS records, and I'd be thrilled if it was in core NixOS. I see a mention of...

In the "DNS names" section in basic.md, this sentence occurs: > This for example means that if there is a name called 'ns1.ord.ietf.org' and a query comes in for 'ns2.fra.ietf.org',...

Commands such as vuiet-play-artist call ivy-read internally. This makes them not able to be repeated with `C-x z` or `C-x M-:` because they prompt for input again. If (interactive) descriptors...

If I package-install vuiet, then vuiet-play-album and hit tab, I get an error about missing ivy functions. So I had to explicitly package-install ivy as well. vuiet should depend on...

The main youtube-dl project, as I understand it, has minimal active maintenance. The most active fork, yt-dlp, doesn't install a "youtube-dl" command, but instead calls its command "yt-dlp". vuiet.el should...

Previously, a Nursery would checkpoint on exit, regardless of whether it was running anything. This is a bit annoying, see #1457, so let's change it to not checkpoint on exit....

The following code: ``` import trio def f(): with trio.move_on_after(1): f() trio.run(f) ``` Fails with: ``` RuntimeError: Cancel scope stack corrupted: attempted to exit in that's still within its child...

The following code triggers an error in the trio-injected sys.excepthook: ``` import trio def f(): try: f() except: raise Exception("foo") f() ``` That is, if we "import trio" before running...

Hi, love the project, I've definitely wanted better mypy support in singledispatch before, as well as other more advanced features. That being said, it looks like mypy is going to...