fix travis + change parsing of true/false

This commit is contained in:
Marcell Vazquez-Chanlatte 2018-09-08 00:34:20 -07:00
parent 98824c9ba1
commit a72a1a1665
3 changed files with 5 additions and 5 deletions

View file

@ -38,10 +38,10 @@ interval = "[" __ const_or_unbound __ "," __ const_or_unbound __ "]"
const_or_unbound = const / "inf" / id
AP = ~r"[a-z\d]+"
AP = ~r"[a-z][a-z\d]*"
bot = "0"
top = "1"
bot = "False"
top = "True"
id = ~r"[a-z\d]+"
const = ~r"[-+]?(\d*\.\d+|\d+)"