Upgrade sre-engine

This commit is contained in:
Noah
2021-04-16 10:56:14 -05:00
parent 85ad2b1f7d
commit 075b184b56
2 changed files with 2 additions and 4 deletions

4
Cargo.lock generated
View File

@@ -2335,9 +2335,9 @@ dependencies = [
[[package]]
name = "sre-engine"
version = "0.1.0"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "405ac93b72ef1cc68dbbe9e990f6e8067856dae41f58b60fd6bd55d216c1fa6c"
checksum = "4953873f7ab71f618648bc796ade9b85ea593d837e535941d28fb8269777c265"
dependencies = [
"bitflags",
"num_enum",

View File

@@ -736,8 +736,6 @@ class ReTests(unittest.TestCase):
self.checkPatternError(br'\N{LESS-THAN SIGN}', r'bad escape \N', 0)
self.checkPatternError(br'[\N{LESS-THAN SIGN}]', r'bad escape \N', 1)
# TODO: RUSTPYTHON
@unittest.expectedFailure
def test_string_boundaries(self):
# See http://bugs.python.org/issue10713
self.assertEqual(re.search(r"\b(abc)\b", "abc").group(1),