[issue10860] Handle empty port after port delimiter in httplib

2011-10-26 Thread Roundup Robot
Roundup Robot added the comment: New changeset e0499b2b28aa by Petri Lehtinen in branch '2.7': Issue #10860: Skip the new test if HTTPS is not available http://hg.python.org/cpython/rev/e0499b2b28aa New changeset a3939c2f6727 by Petri Lehtinen in branch '3.2': Issue #10860: Skip the new test if

[issue10860] Handle empty port after port delimiter in httplib

2011-10-18 Thread Shawn Ligocki
Shawn Ligocki added the comment: Great! Glad it landed :) -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue10860] Handle empty port after port delimiter in httplib

2011-10-18 Thread Roundup Robot
Roundup Robot added the comment: New changeset 6ac59218c049 by Łukasz Langa in branch '3.2': Fixes #10860: Handle empty port after port delimiter in httplib http://hg.python.org/cpython/rev/6ac59218c049 New changeset 18dc3811f2b8 by Łukasz Langa in branch 'default': Merged fix for #10860 from 3

[issue10860] Handle empty port after port delimiter in httplib

2011-10-18 Thread Łukasz Langa
Łukasz Langa added the comment: Patch merged. Thanks, Shawn. -- nosy: +lukasz.langa resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed versions: -Python 3.1 ___ Python tracker

[issue10860] Handle empty port after port delimiter in httplib

2011-10-18 Thread Roundup Robot
Roundup Robot added the comment: New changeset a3e48273dce3 by Łukasz Langa in branch '2.7': Fixes #10860: Handle empty port after port delimiter in httplib http://hg.python.org/cpython/rev/a3e48273dce3 -- nosy: +python-dev ___ Python tracker

[issue10860] Handle empty port after port delimiter in httplib

2011-03-17 Thread Senthil Kumaran
Changes by Senthil Kumaran : -- assignee: -> orsenthil ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue10860] Handle empty port after port delimiter in httplib

2011-02-03 Thread Éric Araujo
Éric Araujo added the comment: >From RFC 3986, section 6.2.3 “Scheme-Based Normalization”: The syntax and semantics of URIs vary from scheme to scheme, as described by the defining specification for each scheme. Implementations may use scheme-specific rules, at further processing co

[issue10860] Handle empty port after port delimiter in httplib

2011-01-08 Thread Senthil Kumaran
Senthil Kumaran added the comment: The title got reset by my previous response. Changing it again. I vote for closing this report as Invalid as I see that the error message which is raised is proper and meaningful. httplib.InvalidURL: nonnumeric port: '' -- priority: normal -> low re

[issue10860] Handle empty port after port delimiter in httplib

2011-01-07 Thread Shawn Ligocki
Shawn Ligocki added the comment: Here's a patch for 2.7 (from the hg checkout http://code.python.org/hg/branches/release2.7-maint/) How does it look? Apparently there was already a testcase for "www.python.org:" failing! -- keywords: +patch Added file: http://bugs.python.org/file2030

[issue10860] Handle empty port after port delimiter in httplib

2011-01-07 Thread Georg Brandl
Georg Brandl added the comment: Except if it's an HTTPS URL :) -- nosy: +georg.brandl ___ Python tracker ___ ___ Python-bugs-list mai

[issue10860] Handle empty port after port delimiter in httplib

2011-01-07 Thread Éric Araujo
Éric Araujo added the comment: Yes. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/

[issue10860] Handle empty port after port delimiter in httplib

2011-01-07 Thread Shawn Ligocki
Shawn Ligocki added the comment: Sure, I can work on a patch. Should an empty port default to 80? In other words does "http://foo.com/"; == "http://foo.com:/";? -- ___ Python tracker

[issue10860] Handle empty port after port delimiter in httplib

2011-01-07 Thread Éric Araujo
Éric Araujo added the comment: The redirection is a red hearing, the error is clearly that an empty port after a port delimiter (like in http://host:) breaks httplib. Do you want to work on a patch? Helpful guidelines are found at http://www.python.org/dev/patches/ -- stage: -> nee