Hi Jason,
That's true that it's an invalid character for python variables, but not for sympy variables. For instance, doing:
s = Symbol('base.length')
works just fine.
I was under the impression that sympify's inputs is treated as a string version of a sympy expression,
NOT a Python expression. This seems to be what the documentation implies:
http://docs.sympy.org/dev/modules/core.html.
Shouldn't this work? I feel like either the documentation is misleading/ambiguous or the function is not matching the specification.
Is there a workaround you would recommend that will properly parse periods as Symbol does?
-Andy S.