You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Matching the max path length on Windows, and putting a 260 character limit in place of the .+ seems a better solution. It will extract filenames and not consume as many cycles when no matches are found.
The text was updated successfully, but these errors were encountered:
nbargnesi
added a commit
to nbargnesi/peframe
that referenced
this issue
May 19, 2017
Similar to #17, matching filenames will result in a lot of backtracking as Python tries to match the
.+
in strings without a match.Here's an example using a large string containing no matches:
Matching the max path length on Windows, and putting a 260 character limit in place of the
.+
seems a better solution. It will extract filenames and not consume as many cycles when no matches are found.The text was updated successfully, but these errors were encountered: