summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2002-06-17 12:43:20 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2002-06-17 12:43:20 (GMT)
commit1ed564af8c5bc50f8a06b6e5cb23d01a1f2fe493 (patch)
treeba233ce8d523270d09d5442eeceffaab65f4b347
parent3430d70e03fa3f7d93feb965a33dd2d2311c566d (diff)
downloadcpython-1ed564af8c5bc50f8a06b6e5cb23d01a1f2fe493.zip
cpython-1ed564af8c5bc50f8a06b6e5cb23d01a1f2fe493.tar.gz
cpython-1ed564af8c5bc50f8a06b6e5cb23d01a1f2fe493.tar.bz2
Whitespace normalization (tabs -> spaces)
-rw-r--r--Lib/imaplib.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/Lib/imaplib.py b/Lib/imaplib.py
index 9b4557c..2a7630b 100644
--- a/Lib/imaplib.py
+++ b/Lib/imaplib.py
@@ -423,10 +423,10 @@ class IMAP4:
def getquota(self, root):
"""Get the quota root's resource usage and limits.
- Part of the IMAP4 QUOTA extension defined in rfc2087.
+ Part of the IMAP4 QUOTA extension defined in rfc2087.
(typ, [data]) = <instance>.getquota(root)
- """
+ """
typ, dat = self._simple_command('GETQUOTA', root)
return self._untagged_response(typ, dat, 'QUOTA')
@@ -435,11 +435,11 @@ class IMAP4:
"""Get the list of quota roots for the named mailbox.
(typ, [[QUOTAROOT responses...], [QUOTA responses]]) = <instance>.getquotaroot(mailbox)
- """
+ """
typ, dat = self._simple_command('GETQUOTA', root)
typ, quota = self._untagged_response(typ, dat, 'QUOTA')
typ, quotaroot = self._untagged_response(typ, dat, 'QUOTAROOT')
- return typ, [quotaroot, quota]
+ return typ, [quotaroot, quota]
def list(self, directory='""', pattern='*'):
@@ -596,7 +596,7 @@ class IMAP4:
"""Set the quota root's resource limits.
(typ, [data]) = <instance>.setquota(root, limits)
- """
+ """
typ, dat = self._simple_command('SETQUOTA', root, limits)
return self._untagged_response(typ, dat, 'QUOTA')