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 hcs
Recipients hcs
Date 2008-04-12.17:58:49
SpamBayes Score 0.5124176
Marked as misclassified No
Message-id <1208023131.05.0.0270197595247.issue2625@psf.upfronthosting.co.za>
In-reply-to
Content
in mailbox.MH.get_message() there is a loop over the mailbox sequences
on row 894 in Python 2.5.2
  for name, key_list in self.get_sequences():
but mailbox.MH.get_sequences() returns a dict so it should be
  for name, key_list in self.get_sequences().iteritems():
History
Date User Action Args
2008-04-12 17:58:51hcssetspambayes_score: 0.512418 -> 0.5124176
recipients: + hcs
2008-04-12 17:58:51hcssetspambayes_score: 0.512418 -> 0.512418
messageid: <1208023131.05.0.0270197595247.issue2625@psf.upfronthosting.co.za>
2008-04-12 17:58:50hcslinkissue2625 messages
2008-04-12 17:58:49hcscreate