Fixed command parser

master
Mark 2022-11-12 19:14:58 -08:00
parent 12d6176f63
commit 1b951813f4
Signed by: Mark
GPG Key ID: AD62BB059C2AAEE4
3 changed files with 3 additions and 2 deletions

View File

@ -8,6 +8,7 @@
"mdel",
"onefile",
"Packrat",
"printables",
"pyparsing",
"rlimit",
"runstatus",

View File

@ -56,7 +56,7 @@ class LambdaParser:
(self.lp + self.pp_history + self.rp)
)
self.pp_command = pp.Suppress(":") + pp.Word(pp.alphas + "_") + pp.Word(pp.alphas + pp.nums + "_.")[0, ...]
self.pp_command = pp.Suppress(":") + pp.Word(pp.alphas + "_") + pp.Word(pp.printables)[0, ...]
self.pp_all = (

View File

@ -15,7 +15,7 @@ lamb = "lamb_engine:main"
[project]
name = "lamb_engine"
description = "A lambda calculus engine"
version = "1.1.6"
version = "1.1.7"
dependencies = [
"prompt-toolkit==3.0.31",
"pyparsing==3.0.9"