We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dac3160 commit 3859ebeCopy full SHA for 3859ebe
src/codext/VERSION.txt
@@ -1 +1 @@
1
-1.15.7
+1.15.8
src/codext/__common__.py
@@ -261,7 +261,7 @@ def getregentry(encoding):
261
while True:
262
try:
263
g = m.group(i) or ""
264
- if g.isdigit() and not g.startswith("0") and "".join(set(g)) != "01":
+ if g.isdigit() and not g.startswith("0") and (re.match(r"10+", g) or "".join(set(g)) != "01"):
265
g = int(g)
266
args += [g]
267
i += 1
0 commit comments