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 donmez
Recipients alexandre.vassalotti, christian.heimes, donmez, gregory.p.smith, gvanrossum, loewis, nnorwitz
Date 2008-01-28.18:05:19
SpamBayes Score 0.10328314
Marked as misclassified No
Message-id <1201543521.31.0.423381305083.issue1621@psf.upfronthosting.co.za>
In-reply-to
Content
gcc is optimizing the second if check , for specifically i == 0 seems to
redundant according to gcc.

        if (i == 0 && quote_empty) {
                if (dialect->quoting == QUOTE_NONE) {
                        PyErr_Format(error_obj,
                                     "single empty field record must be
quoted");
                        return -1;
                }
                else
                        *quoted = 1;
        }
History
Date User Action Args
2008-01-28 18:05:21donmezsetspambayes_score: 0.103283 -> 0.10328314
recipients: + donmez, gvanrossum, loewis, nnorwitz, gregory.p.smith, christian.heimes, alexandre.vassalotti
2008-01-28 18:05:21donmezsetspambayes_score: 0.103283 -> 0.103283
messageid: <1201543521.31.0.423381305083.issue1621@psf.upfronthosting.co.za>
2008-01-28 18:05:19donmezlinkissue1621 messages
2008-01-28 18:05:19donmezcreate