I tried using pyre2 and experienced runaway memory usage. I was using re.split. The behaviour went away when I switched to the standard re module. (without changing my code.)
Did anyone else experience this?
The code in question was:
(a, b) = re.split("\n\s*\n", text, maxsplit=1)
Thank you for any insights you may have regarding this.
Did anyone else experience this?
The code in question was:
(a, b) = re.split("\n\s*\n", text, maxsplit=1)
Thank you for any insights you may have regarding this.