[issue3022] mailbox module, two small fixes

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue3022] mailbox module, two small fixes

2012-10-06 Thread R. David Murray
Changes by R. David Murray : -- components: +email nosy: +barry, petri.lehtinen ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue3022] mailbox module, two small fixes

2012-10-06 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: georg.brandl -> ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue3022] mailbox module, two small fixes

2010-07-23 Thread STINNER Victor
STINNER Victor added the comment: self.get_sequences() => self.get_sequences().iteritems() was fixed in trunk (r71046) and py3k (r71067). The patch on .get_sequences() has no test: (test_get_message_with_sequences() doesn't fail without the patch. --

[issue3022] mailbox module, two small fixes

2010-07-18 Thread Mark Lawrence
Mark Lawrence added the comment: Anyone interested in taking this forward? -- nosy: +BreamoreBoy versions: +Python 3.2 -Python 2.6, Python 3.0 ___ Python tracker ___

[issue3022] mailbox module, two small fixes

2009-06-01 Thread R. David Murray
R. David Murray added the comment: The iteritems problem was fixed in r71046 from issue2625. The tests in mailbox.patch all pass at this point, though it doesn't look like the line with blanks issue has been addressed in the code. -- nosy: +r.david.murray versions: +Python 2.7, Python

[issue3022] mailbox module, two small fixes

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- priority: -> normal stage: -> patch review type: -> behavior ___ Python tracker ___ ___ Python-bugs-lis

[issue3022] mailbox module, two small fixes

2009-03-17 Thread STINNER Victor
STINNER Victor added the comment: Ping. Nobody is interested by the patch? -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue3022] mailbox module, two small fixes

2008-10-31 Thread STINNER Victor
STINNER Victor <[EMAIL PROTECTED]> added the comment: @gpolo: your patch is correct, but I prefer line.rstrip() to line.strip(). My new patch combines your two patches + replace strip by rstrip + use itervalues() instead of items() in MH.pack(). -- nosy: +haypo Added file: http://bugs.

[issue3022] mailbox module, two small fixes

2008-06-02 Thread Georg Brandl
Changes by Georg Brandl <[EMAIL PROTECTED]>: -- assignee: -> georg.brandl nosy: +georg.brandl ___ Python tracker <[EMAIL PROTECTED]> ___ __

[issue3022] mailbox module, two small fixes

2008-06-01 Thread Guilherme Polo
Guilherme Polo <[EMAIL PROTECTED]> added the comment: Added a test case Added file: http://bugs.python.org/file10498/test_get_message_with_sequences.diff ___ Python tracker <[EMAIL PROTECTED]> __

[issue3022] mailbox module, two small fixes

2008-06-01 Thread Guilherme Polo
Guilherme Polo <[EMAIL PROTECTED]> added the comment: Erm.. sorry, the first correction is directly related to get_message not get_sequences per se. ___ Python tracker <[EMAIL PROTECTED]> _

[issue3022] mailbox module, two small fixes

2008-06-01 Thread Guilherme Polo
New submission from Guilherme Polo <[EMAIL PROTECTED]>: 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_s