[Python-checkins] python/dist/src/Lib imaplib.py,1.50,1.51

nnorwitz@users.sourceforge.net nnorwitz@users.sourceforge.net
Mon, 17 Jun 2002 05:43:23 -0700


Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv5546/Lib

Modified Files:
	imaplib.py 
Log Message:
Whitespace normalization (tabs -> spaces)

Index: imaplib.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/imaplib.py,v
retrieving revision 1.50
retrieving revision 1.51
diff -C2 -d -r1.50 -r1.51
*** imaplib.py	17 Jun 2002 07:07:20 -0000	1.50
--- imaplib.py	17 Jun 2002 12:43:20 -0000	1.51
***************
*** 424,431 ****
          """Get the quota root's resource usage and limits.
  
! 	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')
--- 424,431 ----
          """Get the quota root's resource usage and limits.
  
!         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')
***************
*** 436,444 ****
  
          (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]
  
  
--- 436,444 ----
  
          (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]
  
  
***************
*** 597,601 ****
  
          (typ, [data]) = <instance>.setquota(root, limits)
! 	"""
          typ, dat = self._simple_command('SETQUOTA', root, limits)
          return self._untagged_response(typ, dat, 'QUOTA')
--- 597,601 ----
  
          (typ, [data]) = <instance>.setquota(root, limits)
!         """
          typ, dat = self._simple_command('SETQUOTA', root, limits)
          return self._untagged_response(typ, dat, 'QUOTA')