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
acfb82a5
Kaydet (Commit)
acfb82a5
authored
Eki 22, 1997
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Use re instead of regex. Also remove bogus return statement from __init__().
üst
8566e474
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
6 deletions
+8
-6
ftplib.py
Lib/ftplib.py
+8
-6
No files found.
Lib/ftplib.py
Dosyayı görüntüle @
acfb82a5
...
...
@@ -105,7 +105,6 @@ class FTP:
if
host
:
resp
=
self
.
connect
(
host
)
if
user
:
resp
=
self
.
login
(
user
,
passwd
,
acct
)
return
resp
def
connect
(
self
,
host
=
''
,
port
=
0
):
'''Connect to host. Arguments are:
...
...
@@ -469,8 +468,7 @@ class FTP:
del
self
.
file
,
self
.
sock
import
regex
_150_re
=
regex
.
compile
(
"150 .* (
\
([0-9][0-9]*
\
) bytes)"
,
regex
.
casefold
)
_150_re
=
None
def
parse150
(
resp
):
'''Parse the '150' response for a RETR request.
...
...
@@ -479,9 +477,13 @@ def parse150(resp):
'''
if
resp
[:
3
]
!=
'150'
:
raise
error_reply
,
resp
length
=
_150_re
.
match
(
resp
)
if
length
>=
0
:
return
string
.
atoi
(
_150_re
.
group
(
1
))
global
_150_re
if
_150_re
is
None
:
import
re
_150_re
=
re
.
compile
(
"150 .*
\
(([0-9][0-9]*) bytes
\
)"
,
re
.
IGNORECASE
)
m
=
_150_re
.
match
(
resp
)
if
m
:
return
string
.
atoi
(
m
.
group
(
1
))
return
None
...
...
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