I recently came across the problem of not being able to bind to sequences starting with a space. This is caused by applying .strip() on line 209 of engine/tabcreatedb.py (in phrase_parser). I can't see start stripping being helpful, and since it restricts functionality, I think it should be replaced by .rstrip() (as well as possibly some other uses of .strip() in the same file).