##// END OF EJS Templates
matchers: use correct method for finding index in vector...
matchers: use correct method for finding index in vector The path matcher has an optimization for when all paths are `rootfilesin:`. This optimization exists in both Python and Rust. However, the Rust implementation currently has a bug that makes it fail in most cases. The bug is that it `rfind()` where it was clearly intended to use `rposition()`. This patch fixes that and adds a test.

File last commit:

r50545:2e34ea45 default
r52167:bec6e9c1 default
Show More
py.typed
1 line | 8 B | text/plain | TextLexer
Matt Harbison
typing: add py.typed to mercurial.cext for PEP 561 support...
r50545 partial