Don't allow negative integer offsets for now.
This commit is contained in:
parent
13cb0cab90
commit
95968ad558
|
@ -113,7 +113,8 @@ DATATYPES = dict(
|
|||
)
|
||||
|
||||
|
||||
v_integer = pp.Regex(r"[+-]?\d+")\
|
||||
#v_integer = pp.Regex(r"[+-]?\d+")\
|
||||
v_integer = pp.Regex(r"\d+")\
|
||||
.setName("integer")\
|
||||
.setParseAction(lambda toks: int(toks[0]))
|
||||
|
||||
|
|
Loading…
Reference in New Issue