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 mishok13
Recipients mishok13, rhettinger
Date 2008-07-24.16:29:59
SpamBayes Score 0.001467906
Marked as misclassified No
Message-id <1216917000.18.0.220198805235.issue3436@psf.upfronthosting.co.za>
In-reply-to
Content
And how this method should look?
Something like this, I suppose:
def getheader(self):
    if self.fieldnames is None:
        try:
            self.fieldnames = self.reader.next()
        except StopIteration:
            pass
     return self.fieldnames

Well, adding new API after beta2 is a "no-no" as I understand, so this
getheader() method can be added only in 2.7/3.1 releases. Should I post
updated patches or just live with it?
History
Date User Action Args
2008-07-24 16:30:01mishok13setspambayes_score: 0.00146791 -> 0.001467906
recipients: + mishok13, rhettinger
2008-07-24 16:30:00mishok13setspambayes_score: 0.00146791 -> 0.00146791
messageid: <1216917000.18.0.220198805235.issue3436@psf.upfronthosting.co.za>
2008-07-24 16:29:59mishok13linkissue3436 messages
2008-07-24 16:29:59mishok13create