summaryrefslogtreecommitdiffstats
path: root/Lib/imaplib.py
Commit message (Collapse)AuthorAgeFilesLines
* fixed tag generation to avoid null tagsPiers Lauder2005-07-051-2/+2
|
* added GET/SETANNOTATION methodsPiers Lauder2005-06-011-9/+36
|
* Fix bug in InternalDate regexp that failed to allow leading 0 in day - ↵Piers Lauder2005-03-021-1/+1
| | | | courtesy of Rimon Barr <rimon.barr@cornell.edu>
* Fix bug in _checkquote that raised an exception on empty "arg".Piers Lauder2004-10-081-2/+2
|
* Use floor division operator.Raymond Hettinger2004-09-271-1/+1
|
* Fix typo in getquotaroot parameter reported by Thierry FLORAC. Also amplify ↵Piers Lauder2004-08-101-3/+5
| | | | doc string for select to indicate proper way to obtain other responses.
* Patch #998149: imaplib deleteacl and myrights.Martin v. Löwis2004-07-271-0/+15
|
* Added IMAP4_stream to __all__Piers Lauder2004-06-021-1/+1
|
* Fixed IMAP4_SSL read bug introduced by patch 956394Piers Lauder2004-05-201-1/+1
|
* Fixed IMAP4_SSL read and readlines code per patch 956394Piers Lauder2004-05-201-7/+10
|
* fix name in setacl method doc stringPiers Lauder2004-03-251-1/+1
|
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-3/+3
| | | | From SF patch #852334.
* Patch #798297: Add IMAP THREAD command.Martin v. Löwis2003-11-101-0/+11
|
* Comment out cap, it was unused.Neal Norwitz2003-06-291-1/+2
| | | | Should all the commented out code be removed?
* improved CRLF regex for previous fixPiers Lauder2003-04-291-1/+1
|
* added code to canonicalise line endings in data sent via "append" - fix for ↵Piers Lauder2003-04-291-2/+3
| | | | bug report 723962
* Replace criterium with criterion. Fixes #705120.Martin v. Löwis2003-03-271-1/+1
|
* Get rid of many apply() calls.Guido van Rossum2003-02-271-8/+8
|
* Fix NameError in getquotaroot(), sanctioned by Piers.Guido van Rossum2003-01-131-1/+1
|
* Whitespace normalization.Tim Peters2002-11-241-2/+2
|
* added new IMAP4_stream class; added proxyauth command; added login_cram_md5 ↵Piers Lauder2002-11-221-12/+109
| | | | method
* Added missing class to __all__.Raymond Hettinger2002-10-301-1/+1
|
* Whitespace normalization.Tim Peters2002-07-161-1/+1
|
* Code modernization. Replace v=s[i]; del s[i] with single lookup v=s.pop(i)Raymond Hettinger2002-06-301-2/+1
|
* fix incorrect size calc. in IMAP4_SSL.readPiers Lauder2002-06-241-1/+1
|
* Fix IMAP4_SSL read and send methods to take account of short dataPiers Lauder2002-06-231-3/+16
|
* Whitespace normalization (tabs -> spaces)Neal Norwitz2002-06-171-5/+5
|
* Add IMAP4 QUOTA extension methodsPiers Lauder2002-06-171-2/+37
|
* open method changed to use arguments and set instance host/port values ↵Piers Lauder2002-06-051-8/+12
| | | | (instead of __init__)
* SF 563203. Replaced 'has_key()' with 'in'.Raymond Hettinger2002-06-011-13/+13
|
* Replaced boolean test with is NoneRaymond Hettinger2002-06-011-1/+1
|
* Whitespace normalization.Tim Peters2002-04-161-1/+1
|
* fixed missing IMAP4_SSL_PORTPiers Lauder2002-03-081-1/+2
|
* add SSL class submitted by Tino LangePiers Lauder2002-03-081-1/+74
|
* moved command logging routines into IMAP4 class: thread safe/fasterPiers Lauder2002-02-221-56/+65
|
* The Grande 'sendall()' patch, copied from release21-maint. Fixes #516715.Martin v. Löwis2002-02-161-8/+1
| | | | | Replaces calls to socket.send() (which isn't guaranteed to send all data) with the new socket.sendall() method.
* Time2Internaldate(): Call isinstance() once for each of the type testsFred Drake2002-01-051-4/+4
| | | | | instead of possibly twice by using a sequence of types to check for. Add a message to the ValueError that can be raised.
* Check for time.struct_time in addition to tuples. Use 3 charactersMartin v. Löwis2002-01-051-5/+5
| | | | for zone hours. Fixes #499169.
* Whitespace normalization.Tim Peters2001-10-301-1/+1
|
* Make tabnanny happy. (Piers, please run the test suite beforeGuido van Rossum2001-10-221-7/+7
| | | | | checking in changes. The test suite requires consistent use of spaces and tabs.)
* update version numberPiers Lauder2001-10-211-1/+1
|
* fix send method not noticing when partial sends happenPiers Lauder2001-10-211-1/+7
|
* SF bug #469910 by Alfonso Baciero: Bugfix for imaplib for macintoshGuido van Rossum2001-10-151-1/+1
| | | | Pass binary mode to makefile().
* Remove redundant 'import sys' (PyChecker).Guido van Rossum2001-08-131-1/+1
|
* fix for Bug ID 448100 - "test code using NL instead of CRNL"Piers Lauder2001-08-051-1/+1
|
* Whitespace normalization, plus:Tim Peters2001-07-211-5/+5
| | | | | | + test_quopri.py relied on significant trailing spaces. Fixed. + test_dircache.py (still) doesn't work on Windows (directory mtime on Windows doesn't work like it does on Unix).
* apply patch item #416253Piers Lauder2001-07-201-38/+115
|
* fix missed conversion in ESR's string conversionPiers Lauder2001-07-201-1/+1
|
* Somebody checked this in w/ an ambiguous tab/space mix (reported byTim Peters2001-06-181-5/+5
| | | | Mark Favas).
* SF patch #433619, by Michel Pelletier:Guido van Rossum2001-06-171-0/+7
| | | | | | | | | Summary: NAMESPACE support in imaplib.py Initial Comment: Support for the IMAP NAMESPACE extension defined in rfc 2342. This is almost a necessity for working with modern IMAP servers.