Jan Max Meyer
Jan Max Meyer
Hello, this is a first version of a simple HTML parser that can be used to transform an HTML input source into a nested htmltree elements structure. Maybe you find...
This improves the remove_literal_statements-feature and replaces doc-strings in case the module uses __doc__ by the string 'doc-string stripped by python-minifier', which is much shorter in most cases. Draft for issue...
Hey there! First of all, thanks for providing this useful piece of software! It should be improved and find more friends in the Python community. In a [pull request](https://github.com/pyodide/pyodide/pull/1970) for...
`a = true b = a a += true a b` currently returns `(2, 2)`, so `b` is effectively only a reference to `a` due to the RefValue implementation. ```...
This is NOT a bug, but a behavior that should be similar to Python. According to the current implementation, `2==2==2` is turned into `true==2` which is turned into `false`. Tokay...
Given this program ```tokay T_EOL : @{ peek EOF peek ' ' } 'Hello' T_EOL _ print("World") ``` and the input `Hello`, the call to `peek EOF` is ignored and...
The sequence logic destructs `(2, 3)` which has a lower severity. Tokay 0.5... ``` >>> (1, (2, 3), 4) (1, 4) ``` Desired result: ``` >>> (1, (2, 3), 4)...
Parselets could be defined as generics when constant consumables are marked for being replaceable at a parselet's usage, which duplicates the parselet for the specific consumable. ## Draft The idea...
In Tokay v0.4, len was usable as an attribute of str, so both `str.len()` and `str.len` worked. This is currently not possible anymore with Tokay v0.5, but should be considered....
This works: ```rust value!(-1) ``` This fails: ```rust value!([-1, 1]) ``` with ``` error[E0277]: the trait bound `refvalue::RefValue: From` is not satisfied --> src/value/mod.rs:63:9 | 63 | $crate::RefValue::from($value) | ^^^^^^^^^^^^^^^^^^^^^^...