Hello,<br><br>I am wondering if it is possible to have hexadecimal strings in a ini file and have configobj parse it correctly.<br><br>for eg:<br><span class="gI">moonwolf@trantor:~/python/config$ cat foo<br>foo="\x96\x97"<br>
.<br>.<br>.<br>>>> a=ConfigObj("foo")<br>>>> a<br>ConfigObj({'foo': '\\x96\\x97'})<br>>>> a['foo']<br>'\\x96\\x97'<br><br>As you can see the string has escaped the '\' and I want to suppress that behavior. I've looked at the documentation and haven't been able to figure out if this is an available feature or not.<br>
<br>Any help will be greatly appreciated.<br><br>Thank you,<br><br>Jayanth<br><br></span>