Fix Issue7007 -  Use percent-encoded consistently instead of URL Encoded variations. Changes in Modules.
diff --git a/Lib/urllib/parse.py b/Lib/urllib/parse.py
index 00f0e5b..44f4a4b 100644
--- a/Lib/urllib/parse.py
+++ b/Lib/urllib/parse.py
@@ -378,10 +378,10 @@
 
         Arguments:
 
-        qs: URL-encoded query string to be parsed
+        qs: percent-encoded query string to be parsed
 
         keep_blank_values: flag indicating whether blank values in
-            URL encoded queries should be treated as blank strings.
+            percent-encoded queries should be treated as blank strings.
             A true value indicates that blanks should be retained as
             blank strings.  The default false value indicates that
             blank values are to be ignored and treated as if they were
@@ -404,10 +404,10 @@
 
     Arguments:
 
-    qs: URL-encoded query string to be parsed
+    qs: percent-encoded query string to be parsed
 
     keep_blank_values: flag indicating whether blank values in
-        URL encoded queries should be treated as blank strings.  A
+        percent-encoded queries should be treated as blank strings.  A
         true value indicates that blanks should be retained as blank
         strings.  The default false value indicates that blank values
         are to be ignored and treated as if they were  not included.