[issue600362] relocate cgi.parse_qs() into urlparse

2008-09-03 Thread Facundo Batista
Facundo Batista <[EMAIL PROTECTED]> added the comment: Commited in r66196 and r66199, this went into 2.6/3.0 rc1!! Thank you all for the effort! -- resolution: -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]>

[issue600362] relocate cgi.parse_qs() into urlparse

2008-09-03 Thread Senthil
Changes by Senthil <[EMAIL PROTECTED]>: Removed file: http://bugs.python.org/file7/issue600362-py3k-v2.diff ___ Python tracker <[EMAIL PROTECTED]> ___ ___

[issue600362] relocate cgi.parse_qs() into urlparse

2008-09-03 Thread Senthil
Changes by Senthil <[EMAIL PROTECTED]>: Removed file: http://bugs.python.org/file6/issue600362-py26-v2.diff ___ Python tracker <[EMAIL PROTECTED]> ___ ___

[issue600362] relocate cgi.parse_qs() into urlparse

2008-09-03 Thread Senthil
Changes by Senthil <[EMAIL PROTECTED]>: Added file: http://bugs.python.org/file11357/issue600362-py3k-v3.diff ___ Python tracker <[EMAIL PROTECTED]> ___ _

[issue600362] relocate cgi.parse_qs() into urlparse

2008-09-03 Thread Senthil
Senthil <[EMAIL PROTECTED]> added the comment: Facundo, I have updated the patch against the trunk. Added the PendingDeprecationWarning for py26 and DeprecationWarning for py3k. All tests pass ok. Please verify and plan to apply this patch before rc1. Added file: http://bugs.python.org/file113

[issue600362] relocate cgi.parse_qs() into urlparse

2008-09-01 Thread Facundo Batista
Facundo Batista <[EMAIL PROTECTED]> added the comment: Senthil, please update the patchs, adding a DeprecationWarning in 3.0 and a PendingDeprecationWarning in 2.6. Thanks! ___ Python tracker <[EMAIL PROTECTED]> __

[issue600362] relocate cgi.parse_qs() into urlparse

2008-08-25 Thread Matt Giuca
Matt Giuca <[EMAIL PROTECTED]> added the comment: It seems like parse_multipart and parse_header are very strongly related to parse_qs. (eg. if you want to process HTTP requests you'll want to call parse_qs for x-www-form-urlencoded and parse_multipart for multipart/form-data). Should these be m

[issue600362] relocate cgi.parse_qs() into urlparse

2008-08-16 Thread Facundo Batista
Facundo Batista <[EMAIL PROTECTED]> added the comment: This is ok, maybe with some small changes in the docs. I asked in python-dev if this should go now or wait until 2.7/3.1 ___ Python tracker <[EMAIL PROTECTED]> ___

[issue600362] relocate cgi.parse_qs() into urlparse

2008-08-14 Thread Senthil
Changes by Senthil <[EMAIL PROTECTED]>: Removed file: http://bugs.python.org/file10772/issue600362-py3k.diff ___ Python tracker <[EMAIL PROTECTED]> ___ __

[issue600362] relocate cgi.parse_qs() into urlparse

2008-08-14 Thread Senthil
Changes by Senthil <[EMAIL PROTECTED]>: Removed file: http://bugs.python.org/file10771/issue600362-py26.diff ___ Python tracker <[EMAIL PROTECTED]> ___ __

[issue600362] relocate cgi.parse_qs() into urlparse

2008-08-14 Thread Senthil
Changes by Senthil <[EMAIL PROTECTED]>: Added file: http://bugs.python.org/file7/issue600362-py3k-v2.diff ___ Python tracker <[EMAIL PROTECTED]> ___ _

[issue600362] relocate cgi.parse_qs() into urlparse

2008-08-14 Thread Senthil
Senthil <[EMAIL PROTECTED]> added the comment: Hi Facundo, This issue/comments somehow escaped from my noticed, initially. I have addressed your comments in the new set of patches. 1) Previous patch Docs had issues. Updated the Docs patch. 2) Included message in cgi.py about parse_qs, parse_qsl

[issue600362] relocate cgi.parse_qs() into urlparse

2008-07-02 Thread Facundo Batista
Facundo Batista <[EMAIL PROTECTED]> added the comment: Hi Senthil, some details: - You should not withdraw the parse_qsl from cgi.rst (btw, why didn't you extracted also the parse_qs one?), but put a Deprecation message, saying that the user should use it from the urlparse module. - In cgi.py,

[issue600362] relocate cgi.parse_qs() into urlparse

2008-06-29 Thread Senthil
Senthil <[EMAIL PROTECTED]> added the comment: - Updated patches for Python 2.6 and Python 3.0 - Moved the tests. - Updated docs. Somebody please review this so that it can checked in. ___ Python tracker <[EMAIL PROTECTED]>

[issue600362] relocate cgi.parse_qs() into urlparse

2008-06-29 Thread Senthil
Changes by Senthil <[EMAIL PROTECTED]>: Added file: http://bugs.python.org/file10772/issue600362-py3k.diff ___ Python tracker <[EMAIL PROTECTED]> ___

[issue600362] relocate cgi.parse_qs() into urlparse

2008-06-29 Thread Senthil
Changes by Senthil <[EMAIL PROTECTED]>: Added file: http://bugs.python.org/file10771/issue600362-py26.diff ___ Python tracker <[EMAIL PROTECTED]> ___

[issue600362] relocate cgi.parse_qs() into urlparse

2008-06-29 Thread Senthil
Changes by Senthil <[EMAIL PROTECTED]>: Removed file: http://bugs.python.org/file10496/issue600362.diff ___ Python tracker <[EMAIL PROTECTED]> ___ ___

[issue600362] relocate cgi.parse_qs() into urlparse

2008-06-21 Thread Humberto Diogenes
Humberto Diogenes <[EMAIL PROTECTED]> added the comment: Correction: the patch does apply cleanly to 2.6, without breaking tests. It just needs to be ported to 3.0 (new urllib package). ___ Python tracker <[EMAIL PROTECTED]>

[issue600362] relocate cgi.parse_qs() into urlparse

2008-06-21 Thread Humberto Diogenes
Humberto Diogenes <[EMAIL PROTECTED]> added the comment: The patch is not applying cleanly. BTW, urlparse has been renamed to urllib.parse, but the old docs are still there (urlparse.rst). -- nosy: +hdiogenes ___ Python tracker <[EMAIL PROTECTED]> <

[issue600362] relocate cgi.parse_qs() into urlparse

2008-06-01 Thread Senthil
Senthil <[EMAIL PROTECTED]> added the comment: parse_qs and parse_qsl moved to urlparse with this patch. I dont think urlencode would be a good method for urlparse. But this will cease to exist with the addressing of 3108. -- keywords: +patch Added file: http://bugs.python.org/file10496/

[issue600362] relocate cgi.parse_qs() into urlparse

2008-01-30 Thread Raghuram Devarakonda
Raghuram Devarakonda added the comment: I know that Senthil has been working on consolidating url related functionalities so I am adding him to the list. -- nosy: +draghuram, orsenthil versions: +Python 2.6, Python 3.0 Tracker <[EMAIL PROTECTED]>