Shahar Naveh
Shahar Naveh
Noticed after working on f4ab28eb1b0d506c614037a58bbcffde53c995ef that some of the files got changed due to the end of line. this will enforce the same end of line for all python files.
**Is your feature request related to a problem? Please describe.** I'm trying to add inline tabs to my website, where a user can click on a button and it will...
Added missing documentation for the pdf shortcode. --- I was conflicted whether to use an external URL or reference a path for the example. On one hand it's more stable...
I suggest the rules at: https://rust-lang.github.io/rust-clippy/master/index.html?groups=restriction&search=instead_of ATM it shows the following rules: - `clippy::alloc_instead_of_core` - `clippy::std_instead_of_alloc` - `clippy::std_instead_of_core`
snippet: ```python import os os.access("/does/not/exists", os.X_OK) ``` CPython: ```python False ``` RustPython: ```python-traceback Traceback (most recent call last): File "", line 1, in FileNotFoundError: (2, 'No such file or directory...
> [!NOTE] > This is very much at a POC stage ATM The idea here is to auto-generate as much as possible, whether it's oparg field name (`namei/consti/target`/etc), the oparg...
All of our current crates are scattered in the top level of the repository, it's not very intuitive for newcomers to look at the code and know that `common` directory...
## Summary by CodeRabbit * **New Features** * New Python tokenizer module: Tokenizer iterator that yields token tuples (type, text, start, end, line), accepts a readline callable, optional encoding, and...