This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Patch for Additional Test Coverage in urllib.parse
Type: enhancement Stage: resolved
Components: Tests Versions: Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: orsenthil Nosy List: dwoz, orsenthil, python-dev, r.david.murray
Priority: normal Keywords: patch

Created on 2013-03-18 23:55 by dwoz, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
patch.diff dwoz, 2013-03-18 23:55 Patch for Additional Test Coverage in urllib.parse review
Messages (3)
msg184559 - (view) Author: Daniel Wozniak (dwoz) Date: 2013-03-18 23:55
Adding additional tests to get 100% coverage in urllib.parse module. It should be noted that line 598 technically has coverage but it does not appear that way due to an peephole optimization, at least we think that is the case.
msg184931 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-03-22 00:57
New changeset 472b72a61b0a by R David Murray in branch 'default':
#17472: add tests for a couple of untested methods in urllib.urlparse.
http://hg.python.org/cpython/rev/472b72a61b0a
msg184933 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2013-03-22 01:00
Thanks Daniel.  I changed the Quoter test to look for the class name, since the purpose of that method is to differentiate itself from the base defaultdict repr.
History
Date User Action Args
2022-04-11 14:57:43adminsetgithub: 61674
2013-03-22 01:00:19r.david.murraysetstatus: open -> closed

type: enhancement

nosy: + r.david.murray
messages: + msg184933
resolution: fixed
stage: resolved
2013-03-22 00:57:16python-devsetnosy: + python-dev
messages: + msg184931
2013-03-18 23:58:25orsenthilsetassignee: orsenthil

nosy: + orsenthil
2013-03-18 23:55:54dwozcreate