New submission from Christer Sjöholm <[EMAIL PROTECTED]>:

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():

----------
components: Library (Lib)
messages: 65408
nosy: hcs
severity: normal
status: open
title: mailbox.MH.get_message() treats result of get_sequences() as list of 
tuples
type: behavior
versions: Python 2.5, Python 3.0

__________________________________
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2625>
__________________________________
_______________________________________________
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to