mirror of
https://github.com/bazelbuild/bazel-skylib
synced 2024-11-28 08:43:51 +00:00
28d6034185
For example, if you try to match `*a*` against `ab`, then we check: ``` left = "" middle = "a" right = "" middle in name[len(left):len(name)-len(right)]: "a" in "ab"[len(""):len(name)-len("")]: "a" in "ab"[0:-0] "a" in "" => False ``` The problem here is that negative numbers in python index from the back, but -0 is not a negative number, so it always results in the empty string. |
||
---|---|---|
.. | ||
BUILD | ||
glob.bzl | ||
paths.bzl |