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.

Author jiangjinhu666
Recipients jiangjinhu666, r.david.murray
Date 2018-01-17.14:26:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1516199207.36.0.467229070634.issue32581@psf.upfronthosting.co.za>
In-reply-to
Content
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")
History
Date User Action Args
2018-01-17 14:26:47jiangjinhu666setrecipients: + jiangjinhu666, r.david.murray
2018-01-17 14:26:47jiangjinhu666setmessageid: <1516199207.36.0.467229070634.issue32581@psf.upfronthosting.co.za>
2018-01-17 14:26:47jiangjinhu666linkissue32581 messages
2018-01-17 14:26:47jiangjinhu666create