Derek Ford

Results 2 comments of Derek Ford

No patch at the moment, but I believe this is related to backtracking in the regular expressions parsing strings, for the specific input shared. The lengthy call is located at...

This can be fixed by rewriting the string productions (`r"'(\\.|[^'])*'"`) or using an alternative regular expression library that does not rely on backtracking, such as [re2](https://pypi.org/project/re2/), which may be used...