@@ -117,7 +117,7 @@ The :mod:`urllib.parse` module defines the following functions:
117117 values are lists of values for each name.
118118
119119 The optional argument *keep_blank_values * is a flag indicating whether blank
120- values in URL encoded queries should be treated as blank strings. A true value
120+ values in percent- encoded queries should be treated as blank strings. A true value
121121 indicates that blanks should be retained as blank strings. The default false
122122 value indicates that blank values are to be ignored and treated as if they were
123123 not included.
@@ -137,7 +137,7 @@ The :mod:`urllib.parse` module defines the following functions:
137137 name, value pairs.
138138
139139 The optional argument *keep_blank_values * is a flag indicating whether blank
140- values in URL encoded queries should be treated as blank strings. A true value
140+ values in percent- encoded queries should be treated as blank strings. A true value
141141 indicates that blanks should be retained as blank strings. The default false
142142 value indicates that blank values are to be ignored and treated as if they were
143143 not included.
@@ -330,7 +330,7 @@ The :mod:`urllib.parse` module defines the following functions:
330330.. function :: urlencode(query, doseq=False, safe='', encoding=None, errors=None)
331331
332332 Convert a mapping object or a sequence of two-element tuples, which may
333- either be a :class: `str ` or a :class: `bytes `, to a "url -encoded" string,
333+ either be a :class: `str ` or a :class: `bytes `, to a "percent -encoded" string,
334334 suitable to pass to :func: `urlopen ` above as the optional *data * argument.
335335 This is useful to pass a dictionary of form fields to a ``POST `` request.
336336 The resulting string is a series of ``key=value `` pairs separated by ``'&' ``
0 commit comments