Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
a807137c
Commit
a807137c
authored
Oct 31, 2010
by
Benjamin Peterson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wrap some things in with blocks
parent
2d8c917f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
38 deletions
+33
-38
Lib/ftplib.py
Lib/ftplib.py
+33
-38
No files found.
Lib/ftplib.py
View file @
a807137c
...
...
@@ -406,13 +406,12 @@ class FTP:
The response code.
"""
self
.
voidcmd
(
'TYPE I'
)
conn
=
self
.
transfercmd
(
cmd
,
rest
)
while
1
:
data
=
conn
.
recv
(
blocksize
)
if
not
data
:
break
callback
(
data
)
conn
.
close
()
with
self
.
transfercmd
(
cmd
,
rest
)
as
conn
:
while
1
:
data
=
conn
.
recv
(
blocksize
)
if
not
data
:
break
callback
(
data
)
return
self
.
voidresp
()
def
retrlines
(
self
,
cmd
,
callback
=
None
):
...
...
@@ -429,20 +428,18 @@ class FTP:
"""
if
callback
is
None
:
callback
=
print_line
resp
=
self
.
sendcmd
(
'TYPE A'
)
conn
=
self
.
transfercmd
(
cmd
)
fp
=
conn
.
makefile
(
'r'
,
encoding
=
self
.
encoding
)
while
1
:
line
=
fp
.
readline
()
if
self
.
debugging
>
2
:
print
(
'*retr*'
,
repr
(
line
))
if
not
line
:
break
if
line
[
-
2
:]
==
CRLF
:
line
=
line
[:
-
2
]
elif
line
[
-
1
:]
==
'
\
n
'
:
line
=
line
[:
-
1
]
callback
(
line
)
fp
.
close
()
conn
.
close
()
with
self
.
transfercmd
(
cmd
)
as
conn
,
\
conn
.
makefile
(
'r'
,
encoding
=
self
.
encoding
)
as
fp
:
while
1
:
line
=
fp
.
readline
()
if
self
.
debugging
>
2
:
print
(
'*retr*'
,
repr
(
line
))
if
not
line
:
break
if
line
[
-
2
:]
==
CRLF
:
line
=
line
[:
-
2
]
elif
line
[
-
1
:]
==
'
\
n
'
:
line
=
line
[:
-
1
]
callback
(
line
)
return
self
.
voidresp
()
def
storbinary
(
self
,
cmd
,
fp
,
blocksize
=
8192
,
callback
=
None
,
rest
=
None
):
...
...
@@ -461,13 +458,12 @@ class FTP:
The response code.
"""
self
.
voidcmd
(
'TYPE I'
)
conn
=
self
.
transfercmd
(
cmd
,
rest
)
while
1
:
buf
=
fp
.
read
(
blocksize
)
if
not
buf
:
break
conn
.
sendall
(
buf
)
if
callback
:
callback
(
buf
)
conn
.
close
()
with
self
.
transfercmd
(
cmd
,
rest
)
as
conn
:
while
1
:
buf
=
fp
.
read
(
blocksize
)
if
not
buf
:
break
conn
.
sendall
(
buf
)
if
callback
:
callback
(
buf
)
return
self
.
voidresp
()
def
storlines
(
self
,
cmd
,
fp
,
callback
=
None
):
...
...
@@ -483,16 +479,15 @@ class FTP:
The response code.
"""
self
.
voidcmd
(
'TYPE A'
)
conn
=
self
.
transfercmd
(
cmd
)
while
1
:
buf
=
fp
.
readline
()
if
not
buf
:
break
if
buf
[
-
2
:]
!=
B_CRLF
:
if
buf
[
-
1
]
in
B_CRLF
:
buf
=
buf
[:
-
1
]
buf
=
buf
+
B_CRLF
conn
.
sendall
(
buf
)
if
callback
:
callback
(
buf
)
conn
.
close
()
with
self
.
transfercmd
(
cmd
)
as
conn
:
while
1
:
buf
=
fp
.
readline
()
if
not
buf
:
break
if
buf
[
-
2
:]
!=
B_CRLF
:
if
buf
[
-
1
]
in
B_CRLF
:
buf
=
buf
[:
-
1
]
buf
=
buf
+
B_CRLF
conn
.
sendall
(
buf
)
if
callback
:
callback
(
buf
)
return
self
.
voidresp
()
def
acct
(
self
,
password
):
...
...
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