[issue5346] mailbox._singlefileMailbox.flush doesn't preserve file rights

2012-06-29 Thread Petri Lehtinen
Petri Lehtinen added the comment: Fixed. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___

[issue5346] mailbox._singlefileMailbox.flush doesn't preserve file rights

2012-06-29 Thread Roundup Robot
Roundup Robot added the comment: New changeset 69f654f718f4 by Petri Lehtinen in branch '2.7': #5346: Preserve permissions of mbox, MMDF and Babyl mailbox files on flush() http://hg.python.org/cpython/rev/69f654f718f4 New changeset 13fb85ef0eea by Petri Lehtinen in branch '3.2': #5346: Preserve

[issue5346] mailbox._singlefileMailbox.flush doesn't preserve file rights

2012-06-26 Thread Petri Lehtinen
Petri Lehtinen added the comment: Attached a patch. It copies the mode of the original mailbox file to the new file on flush(). -- components: +email keywords: +patch nosy: +barry, r.david.murray stage: test needed -> patch review versions: +Python 3.3 -Python 3.1 Added file: http://bu

[issue5346] mailbox._singlefileMailbox.flush doesn't preserve file rights

2012-06-18 Thread Petri Lehtinen
Changes by Petri Lehtinen : -- nosy: +petri.lehtinen ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue5346] mailbox._singlefileMailbox.flush doesn't preserve file rights

2010-07-09 Thread Andrey Rahmatullin
Andrey Rahmatullin added the comment: Linux -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue5346] mailbox._singlefileMailbox.flush doesn't preserve file rights

2010-07-09 Thread Mark Lawrence
Changes by Mark Lawrence : -- stage: -> unit test needed versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.5 ___ Python tracker ___

[issue5346] mailbox._singlefileMailbox.flush doesn't preserve file rights

2010-07-09 Thread Mark Lawrence
Mark Lawrence added the comment: What platform is this on? -- nosy: +BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue5346] mailbox._singlefileMailbox.flush doesn't preserve file rights

2009-02-22 Thread Andrey Rahmatullin
New submission from Andrey Rahmatullin : Mbox file is recreated during flush(), so the new file has access rights according to umask, which is not necessarily the same as of the old file. -- components: Library (Lib) messages: 82604 nosy: wRAR severity: normal status: open title: mailb