-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
14 parsing single character variables fails #15
14 parsing single character variables fails #15
Conversation
…cter expressions and -references from block_content
…e single character references
…ct with single single character expressions and -references
… of '\$\w[\w\[\]]+' with '\$\w[\w\[\]]*' (-> using * in regex instead of + -> That was the problem)
…ed to single char branch
I tried to adapt for single character keyword vectors. For single component it worked, so I think the issue is fixed. |
…gle_character_references() in test_dictReader.py fail on line 594, the test with multiple string references concatenated. ("AliceandBobfailtheparagliding contest")
oops. No python string concatenation. This is simply substitution. |
Hi Frank, @frl000 great test that you added with the reference lists, I like it :-) |
Single character references were not correctly extracted from block_content.
Reason was the regex used to find them.
\$\w[\w\[\]]+
with\$\w[\w\[\]]*
(i.e. using*
instead of+
)