Have on a number of occasions had to fix the constructed regex in the class StplParser so bottle will work.
Lines 3433 and 3434 are the culprits in this instances where the string has not been declared as a regex ( r'' ).
For each backslash I have had to update these with;
_re_tok += '|([\\[\\{\\(])'
_re_tok += '|([\\]\\}\\)])'
Have on a number of occasions had to fix the constructed regex in the class StplParser so bottle will work.
Lines 3433 and 3434 are the culprits in this instances where the string has not been declared as a regex ( r'' ).
For each backslash I have had to update these with;