Raphaël Gomès
Raphaël Gomès
I see in `py_class_impl.py` that `__init__` is not supported and `__setattr__` is unimplemented. Is there any way of currently creating a class with instance attributes? If no, are there any...
I am part of the [Software Heritage](https://www.softwareheritage.org) initiative to archive all versions of public code and packages. I'm looking for a way of listing all go packages, planning then to...
Well custom commands are more for unusual or... well truly custom commands I would say. I can see adding support for selecting through the stack to get the `export` or...
It could be gated behind a config option like `hg.topic_enabled` if you're uncomfortable with it being a top-level command?
I basically only want to see `log`, `status`, `(p)diff`, `export`, `stack` and `topics`. The rest I prefer to do with the Mercurial/Git CLI. :)
Simple reproduction using `billiard==3.6.4.0`: ```python from billiard import Queue, Process import time errors: Queue = Queue() process = Process(target=lambda: time.sleep(5)) process.start() process.join(1) process.join(2) # Fails here ```
Thanks for getting back to me! I understand this is a decent amount of work, I think falling back to `fancy-regex` if `regex` itself fails (so reversing the fallback) and...
I just tried it (something unrelated took some time to install :sweat_smile:), and there are a couple of issues with the workaround, I'll document those so it's easier to follow:...
I made it so the output was sorted alphabetically.
Maybe it would be a better idea to allow this method to return a new exception to be raised, because I'm not certain of the use case of silencing the...