-
Notifications
You must be signed in to change notification settings - Fork 191
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
Broken parsing of triple-quoted strings in arrays #123
Comments
Hi, Thank you for the bug report. I think this is a duplicate of #113. Do you still get this issue with Python on Windows if you use Unix ( |
Yes, replacing |
I also just tested this on linux, and get the same bug, the string is cut off as well. |
Cool. I've verified this bug. Arrays don't seem to like multiline strings. |
@uiri any plan to fix this? |
I can reproduce it with toml 0.10.0:
|
I've got a toml file like this:
This looks like valid toml to me. However parsing it with the library gives the result:
It seems the string is just completely cut off after the first character. Changing the string content sometimes results in other cutoffs:
results in:
I'm using Python 3.6.1 and toml github master on windows.
The text was updated successfully, but these errors were encountered: