[ python-Bugs-210834 ] urlparse and HTTP parameters (PR#205)

SourceForge.net noreply at sourceforge.net
Mon Apr 19 02:28:35 EDT 2004


Bugs item #210834, was opened at 2000-08-01 14:13
Message generated for change (Comment added) made by bcannon
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=210834&group_id=5470

Category: Python Library
Group: Feature Request
Status: Closed
Resolution: Later
Priority: 3
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Jeremy Hylton (jhylton)
Summary: urlparse and HTTP parameters (PR#205)

Initial Comment:
Jitterbug-Id: 205
Submitted-By: mnot at akamai.com
Date: Tue, 15 Feb 2000 17:09:44 -0500 (EST)
Version: 1.5.2
OS: All


Python parses urls into the following data structure:
  (scheme, netloc, path, params, query, fragment)
and references RFC1808. 1808 has been updated by RFC2396, which allows
on each path segment, not just the last. This would imply a data structure
either like this:
  (scheme, netloc, path, query, fragment)
or this:
  (scheme, netloc, [(segment, parameters)...], query, fragment)

Rather than updating urlparse.py (and introducing incompatibility), it may be
nice to introduce a new class (say, uriparse.py) that implements 2396. If
there's enough interest, I may give it a go...


====================================================================
Audit trail:
Wed Feb 23 21:39:30 2000	guido	sent reply 1
Wed Feb 23 21:39:42 2000	guido	changed notes
Wed Feb 23 21:39:42 2000	guido	moved from incoming to request

----------------------------------------------------------------------

>Comment By: Brett Cannon (bcannon)
Date: 2004-04-18 23:28

Message:
Logged In: YES 
user_id=357491

is urlparse still not compatible?  The regression tests test against RFC 
2396 examples now.

----------------------------------------------------------------------

Comment By: Jeremy Hylton (jhylton)
Date: 2000-10-03 07:14

Message:
added to pep 42


----------------------------------------------------------------------

Comment By: Barry A. Warsaw (bwarsaw)
Date: 2000-09-16 15:07

Message:
Jeremy seems like the best person to decide about this.

----------------------------------------------------------------------

Comment By: Jeremy Hylton (jhylton)
Date: 2000-09-07 15:03

Message:
Please do triage on this bug.

----------------------------------------------------------------------

Comment By: Fred L. Drake, Jr. (fdrake)
Date: 2000-08-16 19:02

Message:
An excellent idea; it can be incorporated in the existing urlparse module using new names.  This won't be done for Python 2.0 at any rate, however.

----------------------------------------------------------------------

Comment By: Nobody/Anonymous (nobody)
Date: 2000-08-01 14:13

Message:
Go for it!

----------------------------------------------------------------------

Comment By: Nobody/Anonymous (nobody)
Date: 2000-08-01 14:13

Message:
From: Guido van Rossum <bugs-py at python.org>
Subject: Re: urlparse and HTTP parameters (PR#205)
Date: Wed Feb 23 21:39:30 2000

Go for it!

--Guido van Rossum


----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=210834&group_id=5470



More information about the Python-bugs-list mailing list