jiangjinhu <jiangjinhu...@126.com> added the comment: def write(self, fp): """Write an .ini-format representation of the configuration state.""" if self._defaults: fp.write("[%s]\n" % DEFAULTSECT) for (key, value) in self._defaults.items(): fp.write("%s = %s\n" % (key, str(value).replace('\n', '\n\t'))) fp.write("\n") for section in self._sections: fp.write("[%s]\n" % section) for (key, value) in self._sections[section].items(): if key == "__name__": continue if (value is not None) or (self._optcre == self.OPTCRE): if value == "": # value = "\"\"" # key = " = ".join((key, str(value).replace('\n', '\n\t')))# else: # key = " = ".join((key, str(value).replace('\n', '\n\t')))
# key = " = ".join((key, str(value).replace('\n', '\n\t'))) fp.write("%s\n" % (key)) fp.write("\n") ---------- _______________________________________ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue32581> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com