Joe Jevnik

Results 16 issues of Joe Jevnik

First, thanks for this wonderful library. I am amazed at how fast it can match and isolate groups! I was evaluating using ctre for some datetime parsing, like you have...

As of Python 3.7, dis.dis has a similar recursive printing feature as `d`. This causes us to print two copies of each code object in the tree. This patch passes...

fixes https://github.com/llllllllll/codetransformer/issues/67 This also found an issue where a function with lone-star syntax was treated as having varargs but that flag is not set when lone star syntax is used.

In `to_pycode` we need to emit `EXTENDED_ARG` when the index is > 256 in py3.6 or > 2**16 before py3.6 for instructions like LOAD_FAST where the argument is an index.

We should talk about what to do with `steal`. I am not sure I like how it mutates the instructions in place.

api design

This commit adds support for optional concurrent executors to allow concurrently reading or writing blocks to the underlying store. For stores where the IO is expensive, for example an S3Map,...

The PP and star calculations were updated in February 2019. Slider needs to be updated to account for these changes. source: https://osu.ppy.sh/home/news/2019-02-05-new-changes-to-star-rating-performance-points

PP calculation

libpy itself is linked against python so we need to make it easy for users to tell their exension to link against the version of libpy that was built for...

in a switch like: ``` c switch(c){ case 'a': puts("matched a"); case 'b': puts("matched b"); ``` if `c` is `a`, both 'matched a' and 'matched b' will be printed. An...