New issue 28 by hubert.t...@gmail.com: Options in inifile with name
beginning with REM are skipped
http://code.google.com/p/iniparse/issues/detail?id=28
The RegExp for Class CommentLine should test for a space after REM.
If not, an option like Remote_dir is interpreted as a comment.
regexp like
regex = re.compile(r'^(?P<csep>[;#]|[rR][eE][mM] +)'
r'(?P<comment>.*)$')
(" +'" added)
should work.
Comment #1 on issue 28 by psobe...@gmail.com: Options in inifile with name
beginning with REM are skipped
http://code.google.com/p/iniparse/issues/detail?id=28
Yup, you're right. Thanks for the bug report.
I will apply the fix.