Pádraig Brady
Pádraig Brady
This works but is not very efficient. It would be good to have a replace() method I think, that would avoid all the assignment checks etc. Also ideally we would...
I'll push this now, and we can optimize later
In case it's related, independently I noticed macos has a bug wrt to this char, where isspace(0x85) returns true
Dependent on issue #821
The main thing to consider here is usage on popular systems. python 3.6 is in use by RHEL 8 (centos 8) at least, so I don't think we should deprecate...
Well at least the error is quite clear as to the issue: ``` raise InterpolationResolutionError( omegaconf.errors.InterpolationResolutionError: The following interpolation is used to denote a config key and thus should return...
Generally one would want to add new parameters to the end of a section. We'd have to figure some way to make it an option
The --merge functionality may be used to update multiple items at once. That doesn't cater for delete though
Indeed :( This looks to be an issue in iniparse. It doesn't treat "default" specially when reading, so I don't know why it's restricting creation of such a section. I...
quotes are unusual in ini values, since they're redundant. You might use the shell to parse with something like: eval variable=$(crudini --get file.ini section parameter) Now $variable will have the...