Lawrence Chan
Lawrence Chan
It would be useful to be able to toggle/flag into a process-level mode to group by pid and display more process-level information like the full command line. - For the...
I think the current implementation of the sync Publish may listen on a shared ackInbox without a correlationId. It should always force a non-empty correlationId and verify it when the...
It would be useful to be able to apply type transformations to `TypeVarTuple`'s types. Some motivating examples: ```python Ts = TypeVarTuple('Ts') class Example(Generic[*Ts]): def __init__(self, *types: *type[Ts]) -> None: self.types...
Some code needs to be updated now that the deprecated top-level ABCs in `collections` have been removed. ``` File "/path/to/lib/python3.10/site-packages/pytypes/type_util.py", line 2252, in class _typechecked_Iterable(collections.Iterable): AttributeError: module 'collections' has no...
If there are too many labels, cells can fall off the edge of the svg. I currently use a wrapper function to postprocess cells and wrap them to the next...
~It appears that the current implementation only saves the last exit status if WIFEXITED but not if WIFSIGNALED. Is this intentional? If not, we should add that. If it is...
This adds simple interpolation of the quick-repeat-list variable. There may be a better way to do this but this worked for my case. It is important to note that the...
It would be useful to interpolate the quick-repeat-list attribute so that the user has a little more flexibility in preventing name collisions in the global re-rendering service. The use case...
The line here https://github.com/pydata/numexpr/blob/7c2ef387d81cd450e8220fe4174cf46ec559994c/numexpr/utils.py#L118 should be ```python if 'NUMEXPR_MAX_THREADS' in os.environ or 'OMP_NUM_THREADS' in os.environ: ``` given that the two env vars are treated the same way in the code...
* Are you reporting a bug, or opening a feature request? bug * Please insert below the code you are checking with mypy. ```python from typing import Generic, TypeVar T...