Changeset 254:2bead8ef812d for imapclient
- Timestamp:
- 05/06/11 23:35:03 (12 months ago)
- Branch:
- default
- Location:
- imapclient
- Files:
-
- 2 modified
-
__init__.py (modified) (1 diff)
-
imapclient.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
imapclient/__init__.py
r253 r254 3 3 # Please see http://en.wikipedia.org/wiki/BSD_licenses 4 4 5 __version__ = '0.8 '5 __version__ = '0.8-dev' 6 6 __author__ = 'Menno Smits <menno@freshfoo.com>' 7 7 -
imapclient/imapclient.py
r250 r254 168 168 *shared*. 169 169 170 See `RFC -2342 <http://tools.ietf.org/html/rfc2342>`_ for more details.170 See `RFC 2342 <http://tools.ietf.org/html/rfc2342>`_ for more details. 171 171 """ 172 172 typ, data = self._imap.namespace() … … 488 488 criteria. It defaults to US-ASCII. 489 489 490 See `RFC -3501 section 6.4.4 <http://tools.ietf.org/html/rfc3501#section-6.4.4>`_490 See `RFC 3501 section 6.4.4 <http://tools.ietf.org/html/rfc3501#section-6.4.4>`_ 491 491 for more details. 492 492 """ … … 525 525 526 526 The *criteria* argument is as per search(). 527 See `RFC -5256 <http://tools.ietf.org/html/rfc5256>`_ for full details.527 See `RFC 5256 <http://tools.ietf.org/html/rfc5256>`_ for full details. 528 528 529 529 Note that SORT is an extension to the IMAP4 standard so it may
