mercurial/fileset.py
changeset 36505 db33c5bc781f
parent 36473 ab5f18a9dcac
child 37084 f0b6fbea00cf
--- a/mercurial/fileset.py	Thu Mar 01 08:55:39 2018 -0500
+++ b/mercurial/fileset.py	Thu Mar 01 04:50:22 2018 -0500
@@ -392,11 +392,10 @@
     elif expr.startswith(">"):
         a = util.sizetoint(expr[1:])
         return lambda x: x > a
-    elif expr[0:1].isdigit or expr.startswith('.'):
+    else:
         a = util.sizetoint(expr)
         b = _sizetomax(expr)
         return lambda x: x >= a and x <= b
-    raise error.ParseError(_("couldn't parse size: %s") % expr)
 
 @predicate('size(expression)', callexisting=True)
 def size(mctx, x):