Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
1ed564af
Kaydet (Commit)
1ed564af
authored
Haz 17, 2002
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Whitespace normalization (tabs -> spaces)
üst
3430d70e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
imaplib.py
Lib/imaplib.py
+5
-5
No files found.
Lib/imaplib.py
Dosyayı görüntüle @
1ed564af
...
...
@@ -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'
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment