MapleCCC

Results 13 issues of MapleCCC

This [line of code](https://github.com/Moddus/tldr-python-dash-docset/blob/03f1ec097fd87980c6b0a7714c55bae011efb8ef/generator.py#L47) use `os.mkdir` to create sub-directory. ```python try: os.mkdir(sub_path) except OSError as e: print("Could not create dir " + e.strerror) raise SystemExit ``` It prompts error on...

Executing the command `python -m pip install -U OpenCC` will install OpenCC v1.1.1, but not the latest stable version 1.1.2. After investigating the output of `pip` with a ``--verbose`` flag...

The VSCode setting `editor.suggest.snippetsPreventQuickSuggestions` is intended to preempt the usage of `Tab` key. When this setting is turned on, `Tab` is used for jumping from current stop position to next...

Type: bug
help wanted

This pull request should fix #749.

CLA Signed

This pull request should fix #747. I have tried to build document of LibCST with Sphinx 5.1.1 locally. It works fine and smoothly. The only trivial change we need to...

CLA Signed

The current document of `FullRepoManager` is as shown in the following picture: ![image](https://user-images.githubusercontent.com/25131775/185000858-1d1afa19-d9ef-4c9d-9c70-17dfd0c89d03.png) It can be seen that the format is mildly broken. Let's look at the docstring in the...

While reading libcst document, I notice that there are some confusing discrepancies in the document: 1. The `visit()` method of `libcst.CSTNode` is [shown to be a zero-argument function](https://libcst.readthedocs.io/en/latest/nodes.html#libcst.CSTNode.visit). However the...

The version of libcst I am using is 0.3.21. Following is the code snippet to reproduce the bug: ```python import libcst as cst import libcst.matchers as m s = """...

machinery

The document of `MatchMetadataIfTrue` [suggests an example code](https://libcst.readthedocs.io/en/latest/matchers.html#libcst.matchers.MatchMetadataIfTrue) to `match against any Name node for the identifier foo as long as that identifier is found at the beginning of an...

documentation
machinery