You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Iniparser will stop reading after the first double quoted string so we will end up with key=hello instead of key=hello world
I'm not sure if it's a bug or an "undocumented feature" (a line should not contain more than a single quoted string) but in such case we should display a syntax error instead of just dropping information
The text was updated successfully, but these errors were encountered:
I checked Winapi: GetPrivateProfileString ends up with "hello" world, and I think that is the desired value.
key = "hello" returns hello, I think it checks quotes only at first and last character. I believe the only library iniparser should be consistent to is Winapi.
Given the .ini
Iniparser will stop reading after the first double quoted string so we will end up with
key=hello
instead ofkey=hello world
I'm not sure if it's a bug or an "undocumented feature" (a line should not contain more than a single quoted string) but in such case we should display a syntax error instead of just dropping information
The text was updated successfully, but these errors were encountered: