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
67af5036
Commit
67af5036
authored
Mar 15, 2014
by
Ned Deily
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #20939: merge from 3.3
parent
31de2253
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
Lib/test/test_urllibnet.py
Lib/test/test_urllibnet.py
+1
-1
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Lib/test/test_urllibnet.py
View file @
67af5036
...
...
@@ -80,7 +80,7 @@ class urlopenNetworkTests(unittest.TestCase):
def
test_geturl
(
self
):
# Make sure same URL as opened is returned by geturl.
URL
=
"http://www.python.org/"
URL
=
"http
s
://www.python.org/"
with
self
.
urlopen
(
URL
)
as
open_url
:
gotten_url
=
open_url
.
geturl
()
self
.
assertEqual
(
gotten_url
,
URL
)
...
...
Misc/NEWS
View file @
67af5036
...
...
@@ -13,6 +13,9 @@ Core and Builtins
Library
-------
- Issue #20939: Fix test_geturl failure in test_urllibnet due to
new redirect of http://www.python.org/ to https://www.python.org.
What'
s
New
in
Python
3.4.0
release
candidate
3
?
===============================================
...
...
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