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
5ab1c01b
Commit
5ab1c01b
authored
Apr 07, 2015
by
Victor Stinner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #23881: urllib.ftpwrapper constructor now closes the socket if the FTP
connection failed.
parent
d27bcbd7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
Lib/urllib.py
Lib/urllib.py
+5
-1
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Lib/urllib.py
View file @
5ab1c01b
...
...
@@ -871,7 +871,11 @@ class ftpwrapper:
self
.
timeout
=
timeout
self
.
refcount
=
0
self
.
keepalive
=
persistent
self
.
init
()
try
:
self
.
init
()
except
:
self
.
close
()
raise
def
init
(
self
):
import
ftplib
...
...
Misc/NEWS
View file @
5ab1c01b
...
...
@@ -21,6 +21,9 @@ Core and Builtins
Library
-------
- Issue #23881: urllib.ftpwrapper constructor now closes the socket if the FTP
connection failed.
- Issue #15133: _tkinter.tkapp.getboolean() now supports long and Tcl_Obj and
always returns bool. tkinter.BooleanVar now validates input values (accepted
bool, int, long, str, unicode, and Tcl_Obj). tkinter.BooleanVar.get() now
...
...
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