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 gpolo
Recipients gpolo
Date 2008-06-01.21:29:29
SpamBayes Score 0.04355842
Marked as misclassified No
Message-id <1212355773.67.0.369854949727.issue3022@psf.upfronthosting.co.za>
In-reply-to
Content
While fixing the tkinter demos, I found some problems when moving from
mhlib to mailbox that are corrected in the attached patch.

The first fix:

-        for name, key_list in self.get_sequences():
+        for name, key_list in self.get_sequences().iteritems():

I'm not sure someone else used the module before, or at least
get_sequences() since it returns a dict and it just fails in the current
code.

The second fix is about the .mh_sequences file format I found here, it
may have some lines with one space, or two, after its content which was
causing the get_sequences() to fail too.
History
Date User Action Args
2008-06-01 21:29:34gpolosetspambayes_score: 0.0435584 -> 0.04355842
recipients: + gpolo
2008-06-01 21:29:33gpolosetspambayes_score: 0.0435584 -> 0.0435584
messageid: <1212355773.67.0.369854949727.issue3022@psf.upfronthosting.co.za>
2008-06-01 21:29:32gpololinkissue3022 messages
2008-06-01 21:29:31gpolocreate