daeken / kdl-py

Python implementation of the KDL Document Language

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Module will not import if parse is included

rougetimelord opened this issue · comments

commented

Traceback:

File [kdl\__init__.py], line 25
    identRe = regex.compile(ur'^[^\\<{;\[=,"0-9\t \u00A0\u1680\u2000-\u200A\u202F\u205F\u3000\uFFEF\r\n\u0085\u000C\u2028\u2029][^\\;=,"\t \u00A0\u1680\u2000-\u200A\u202F\u205F\u3000\uFFEF\r\n\u0085\u000C\u2028\u2029]*$')

Addressed by #7 and #2.

Also can't get module to import just Document or just Node, so basically nothing works

commented

Also can't get module to import just Document or just Node, so basically nothing works

Doing from kdl import Node, Document seems to run without an exception. But it is kind of useless without parse.

Also can't get module to import just Document or just Node, so basically nothing works

Doing from kdl import Node, Document seems to run without an exception. But it is kind of useless without parse.

Didn't work for me. Perhaps just an oddity of my setup then.