This commit is contained in:
Ms2ger 2025-06-09 15:34:51 +02:00
parent 2c23196994
commit 45f666db33
2 changed files with 2 additions and 2 deletions

View File

@ -27,6 +27,6 @@
"test:diff:xs": "test262-harness -t 8 --hostType=xs --hostPath=xs $(npm run --silent diff)"
},
"dependencies": {
"@tc39/ecma262-biblio": "^2.1.2458"
"@tc39/ecma262-biblio": "^2.1.2897"
}
}

View File

@ -13,7 +13,7 @@ class CheckEsid(Check):
# https://url.spec.whatwg.org/#fragment-state
# However, that must also include "%"
self.esidRegex = re.compile(
u"^[a-z0-9!$%&'()*+,\-./:;=?@_~\u00a0-\U0010fffd]+$", re.IGNORECASE
u"^[a-z0-9!$%&'()*+,\\-./:;=?@_~\u00a0-\U0010fffd]+$", re.IGNORECASE
)
def run(self, name, meta, source):