"README.rst" did not exist on "1d1fd5d44f57ca356a66665b74b6ffe2ff7ff71c"
rust-filepatterns: unescape comment character property
There were multiple issues in the original implementation: a. the local variable "line" dropped soon after replace_slice() applied b. replace_slice() was noop since br"\#".len() != b"#" This patch uses bytes::Regex::replace_all() since it seems the simplest way to replace bytes of arbitrary length, and I don't think we have to avoid using Regexp here.
Please register or sign in to comment