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
f241afae
Kaydet (Commit)
f241afae
authored
Agu 19, 2010
tarafından
Senthil Kumaran
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix Issue9638 - remove dead code from py3k imaplib
üst
e8d5145e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
15 deletions
+0
-15
imaplib.py
Lib/imaplib.py
+0
-15
No files found.
Lib/imaplib.py
Dosyayı görüntüle @
f241afae
...
...
@@ -147,8 +147,6 @@ class IMAP4:
class
abort
(
error
):
pass
# Service errors - close and retry
class
readonly
(
abort
):
pass
# Mailbox status changed to READ-ONLY
mustquote
=
re
.
compile
(
br
"[^
\
w!#$
%
&'*+,.:;<=>?^`|~-]"
,
re
.
ASCII
)
def
__init__
(
self
,
host
=
''
,
port
=
IMAP4_PORT
):
self
.
debug
=
Debug
self
.
state
=
'LOGOUT'
...
...
@@ -846,7 +844,6 @@ class IMAP4:
if
arg
is
None
:
continue
if
isinstance
(
arg
,
str
):
arg
=
bytes
(
arg
,
"ASCII"
)
#data = data + b' ' + self._checkquote(arg)
data
=
data
+
b
' '
+
arg
literal
=
self
.
literal
...
...
@@ -1055,18 +1052,6 @@ class IMAP4:
return
tag
def
_checkquote
(
self
,
arg
):
# Must quote command args if non-alphanumeric chars present,
# and not already quoted.
if
len
(
arg
)
>=
2
and
(
arg
[
0
],
arg
[
-
1
])
in
((
'('
,
')'
),(
'"'
,
'"'
)):
return
arg
if
arg
and
self
.
mustquote
.
search
(
arg
)
is
None
:
return
arg
return
self
.
_quote
(
arg
)
def
_quote
(
self
,
arg
):
arg
=
arg
.
replace
(
b
'
\\
'
,
b
'
\\\\
'
)
...
...
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