This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: double comma cant be parsed in config module
Type: Stage: resolved
Components: None Versions:
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: Nosy List: ezio.melotti, gescheit, lukasz.langa
Priority: normal Keywords:

Created on 2011-12-28 17:21 by gescheit, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (2)
msg150306 - (view) Author: Aleksandr Balezin (gescheit) * Date: 2011-12-28 17:21
In conf file:
"keyе_ = ,,"
Get next exception:
  File "/usr/lib/python2.6/dist-packages/configobj.py", line 1230, in __init__
    self._load(infile, configspec)
  File "/usr/lib/python2.6/dist-packages/configobj.py", line 1306, in _load
    self._parse(infile)
  File "/usr/lib/python2.6/dist-packages/configobj.py", line 1660, in _parse
    ParseError, infile, cur_index)
  File "/usr/lib/python2.6/dist-packages/configobj.py", line 1721, in _handle_error
 raise error
configobj.ParseError: Parse error in value at line 15.
msg150324 - (view) Author: Łukasz Langa (lukasz.langa) * (Python committer) Date: 2011-12-29 09:13
Hello, Alexander. ConfigObj is an external library. It is not maintained by the core team. You can report your issue to the ConfigObj issue tracker here:

http://code.google.com/p/configobj/issues/list
History
Date User Action Args
2022-04-11 14:57:25adminsetgithub: 57880
2011-12-29 09:13:43lukasz.langasetstatus: open -> closed
versions: - Python 2.7, Python 3.2
messages: + msg150324

components: + None, - Regular Expressions
resolution: not a bug
stage: resolved
2011-12-28 17:21:08gescheitcreate