Hello, I am wondering if it is possible to have hexadecimal strings in a ini file and have configobj parse it correctly.
for eg: moonw...@trantor:~/python/config$ cat foo foo="\x96\x97" . . . >>> a=ConfigObj("foo") >>> a ConfigObj({'foo': '\\x96\\x97'}) >>> a['foo'] '\\x96\\x97' 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. Any help will be greatly appreciated. Thank you, Jayanth
-- http://mail.python.org/mailman/listinfo/python-list