summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorFacundo Batista <facundobatista@gmail.com>2008-09-03 22:35:50 (GMT)
committerFacundo Batista <facundobatista@gmail.com>2008-09-03 22:35:50 (GMT)
commitc585df94766702ac6d6f3f0d27ad5d07e5546164 (patch)
treefafe4eb0d5bc1d5e6935ab4baf0f203d833d7ccd /Misc
parent69acb43327be1ee4dd19c4df3dc67668ebaa2d66 (diff)
downloadcpython-c585df94766702ac6d6f3f0d27ad5d07e5546164.zip
cpython-c585df94766702ac6d6f3f0d27ad5d07e5546164.tar.gz
cpython-c585df94766702ac6d6f3f0d27ad5d07e5546164.tar.bz2
Issue 600362: Relocated parse_qs() and parse_qsl(), from the cgi module
to the urlparse one. Added a PendingDeprecationWarning in the old module, it will be deprecated in the future. Docs and tests updated.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b4f02b2..f0da457 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -56,6 +56,10 @@ C-API
Library
-------
+- Issue 600362: Relocated parse_qs() and parse_qsl(), from the cgi module
+ to the urlparse one. Added a PendingDeprecationWarning in the old
+ module, it will be deprecated in the future.
+
- Issue #2562: Fix distutils PKG-INFO writing logic to allow having
non-ascii characters and Unicode in setup.py meta-data.