summaryrefslogtreecommitdiff
path: root/Lib/mailbox.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #28764: Fix a test_mailbox failure on Android API 24 when run as a non-...Xavier de Gaye2016-12-121-9/+12
* Issue #27107: Add exception classes to mailbox.__all__, by Jacek Ko?odziejMartin Panter2016-06-061-3/+4
* Issue #26778: Fixed "a/an/and" typos in code comment and documentation.Serhiy Storchaka2016-04-171-1/+1
* Issue #23865: close() methods in multiple modules now are idempotent and moreSerhiy Storchaka2015-04-101-6/+8
|\
| * PEP 479: Use the return-keyword instead of raising StopIteration inside a ge...Raymond Hettinger2014-11-221-1/+1
| * Issue #22823: Use set literals instead of creating a set from a listRaymond Hettinger2014-11-091-2/+2
* | Issue #23865: close() methods in multiple modules now are idempotent and moreSerhiy Storchaka2015-04-101-4/+8
|/
* Issue #22369: Change "context manager protocol" to "context management protoc...Serhiy Storchaka2014-09-101-1/+1
* Issue #20729: Restored the use of lazy iterkeys()/itervalues()/iteritems()Serhiy Storchaka2014-08-131-7/+7
* Issue #20976: pyflakes: Remove unused importsVictor Stinner2014-03-201-1/+0
* Issue #19936: Added executable bits or shebang lines to Python scripts whichSerhiy Storchaka2014-01-161-2/+0
|\
| * Issue #19936: Added executable bits or shebang lines to Python scripts whichSerhiy Storchaka2014-01-161-2/+0
* | Merge #19037: adjust file times *before* moving maildir files into place.R David Murray2013-09-181-5/+13
|\ \ | |/
| * #19037: adjust file times *before* moving maildir files into place.R David Murray2013-09-181-5/+13
* | Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a)Brett Cannon2013-07-041-1/+1
* | Issue #18200: Update the stdlib (except tests) to useBrett Cannon2013-06-131-1/+1
* | modernize some modules' code by replacing OSError->ENOENT/ENOTDIR/EPERM/EEXIS...Giampaolo Rodola'2013-02-121-27/+14
* | modernize some modules' code by using with statement around open()Giampaolo Rodola'2013-02-121-14/+4
* | Replace IOError with OSError (#16715)Andrew Svetlov2012-12-251-8/+8
* | #16135: Removal of OS/2 support (Python code partial cleanup)Jesus Cea2012-10-051-4/+2
* | #16135: Removal of OS/2 support (Remove OS2 and OS/2 references)Jesus Cea2012-10-051-3/+0
* | utilize yield fromPhilip Jenvey2012-10-011-2/+1
|/
* #15222: Merge 3.2Petri Lehtinen2012-09-251-8/+14
|\
| * #11062: Fix universal newline support in Babyl._install_message()Petri Lehtinen2012-08-161-8/+14
| |\
| | * #11062: Fix adding a message from file to Babyl mailboxPetri Lehtinen2012-08-151-8/+14
| | |\
| | | * #5346: Preserve permissions of mbox, MMDF and Babyl mailbox files on flush()Petri Lehtinen2012-06-291-0/+3
| | | |\
| | | * \ #9559: Don't call _pre_mailbox_hook more than oncePetri Lehtinen2012-06-291-2/+5
| | | |\ \
| | | * \ \ #9559: Append data to single-file mailbox files if messages are only addedPetri Lehtinen2012-06-281-3/+15
| | | |\ \ \
| | | * \ \ \ #15036: Make a repeated changes and flushes work with single-file mailboxesPetri Lehtinen2012-06-151-8/+14
| | | |\ \ \ \
| | | | * | | | #12537: in mailbox avoid depending on knowledge of email package internalsR David Murray2012-04-081-3/+12
| | | | * | | | Fix Maildir initialization so that maildir contents are read correctly.Petri Lehtinen2011-11-051-5/+3
| | | | |\ \ \ \
| | | | * | | | | Close #12454: The mailbox module is now using ASCII, instead of the localeVictor Stinner2011-10-171-5/+2
* | | | | | | | | #15222: Insert blank line after each message in mbox mailboxesPetri Lehtinen2012-09-251-6/+38
|/ / / / / / / /
* | | | | | | | #11062: Fix universal newline support in Babyl._install_message()Petri Lehtinen2012-08-161-3/+10
|/ / / / / / /
* | | | | | | #11062: Fix adding a message from file to Babyl mailboxPetri Lehtinen2012-08-151-1/+1
| |_|_|_|_|/ |/| | | | |
* | | | | | #5346: Preserve permissions of mbox, MMDF and Babyl mailbox files on flush()Petri Lehtinen2012-06-291-0/+3
| |_|_|_|/ |/| | | |
* | | | | #9559: Don't call _pre_mailbox_hook more than oncePetri Lehtinen2012-06-291-2/+5
| |_|_|/ |/| | |
* | | | #9559: Append data to single-file mailbox files if messages are only addedPetri Lehtinen2012-06-281-3/+15
|/ / /
* | | #15036: Make a repeated changes and flushes work with single-file mailboxesPetri Lehtinen2012-06-151-0/+1
| |/ |/|
* | Fix Maildir initialization so that maildir contents are read correctly.Petri Lehtinen2011-11-051-5/+3
|/
* #11700: proxy object close methods can now be called multiple timesR David Murray2011-06-171-4/+10
* #11767: use context manager to close file in __getitem__ to prevent FD leakR David Murray2011-06-171-1/+3
* #11999: sync based on comparing mtimes, not mtime to system clockR David Murray2011-05-061-140/+254
|\
| * Merged revisions 88730 via svnmerge fromR. David Murray2011-03-031-3/+3
| * Fix #11116 fix on Windows (close file before removing in MH code)R. David Murray2011-02-121-1/+8
| * #11116: roll back on error during add so mailbox isn't left corrupted.R. David Murray2011-02-111-6/+18
| * #9124: mailbox now accepts binary input and uses binary internallyR. David Murray2011-01-301-119/+208
| * Fix test_mailbox by supporting context manager protocol for get_file() returns.Georg Brandl2010-10-301-0/+14
| * #8773: mailbox.py does not need to be executable.Georg Brandl2010-08-011-0/+0
| * Merged revisions 77952,78030,78102,78104,78107,78206,78216,78296-78297,78328,...Benjamin Peterson2010-03-211-10/+2