MapleCCC

Results 20 comments of MapleCCC

Encounter this issue today when using tqdm (https://github.com/tqdm/tqdm/issues/678). Any progress to the fix? I see that @Delgan makes a [Pull Request](https://github.com/tartley/colorama/pull/222) and awaits merge. Could anyone with the merge right...

@blumu I think the type stub you mentioned is intended for https://github.com/LuminosoInsight/ordered-set , another ordered set implementation. Not this one.

I suggest to change the useful type stub provided by JamesReynolds to following: ```python from typing import Any, Iterable, Iterator, TypeVar T = TypeVar("T") def tqdm(iterable: Iterable[T], *args: Any, **kwargs:...

The CI encountered errors when installing the `lxml` library in the environment of CPython3.11+Windows. This is due to that `lxml` library has not published built wheels for the environment of...

So I inspect the source code, and figure out that this happens because, when the first parameter of `findall()` is not a `MetadataWrapper`, `findall()` internally uses a stub `metadata_lookup` that...

FWIW, these two lines are where the stub `metadata_lookup` is picked: https://github.com/Instagram/LibCST/blob/13485d3c2f5bb3e4b6219dac6ba7bb08c851f21f/libcst/matchers/_matcher_base.py#L1676-L1677

I think it's good to assume that when a user supplies a metadata-based matcher, such as `MatchMetadataIfTrue(PositionProvider, xxx)`, he almost always intends for that metadata provider, such as `PositionProvider`, to...

@zsol Cool! Thank you for the positive comment! A PR #757 has been opened to address the proposed changes. A side note: I am not too concerned about this being...

I think this issue is the same with #749. With the landing of #750, this issue can be closed now.

The CI errors originates from installing lxml, which is infamously difficult, when lxml not yet publishes wheel for CPython3.11+Windows. These lxml-related CI errors are safe to ignore for our case...