1
0
mirror of https://github.com/django/django.git synced 2025-04-06 06:26:41 +00:00

[2.0.x] Refs #23919 -- Corrected django.utils.http.urlencode()'s documented signature.

Follow up to fee42fd99ee470528858c2ccb3621135c30ec262.

Backport of e3a30f2d16d65e7f0b870e997e92425a2f795587 from master
This commit is contained in:
François Freitag 2017-10-09 08:46:07 -04:00 committed by Tim Graham
parent 71da2b4f11
commit 3eb447d85b

View File

@ -690,7 +690,7 @@ escaping HTML.
.. module:: django.utils.http
:synopsis: HTTP helper functions. (URL encoding, cookie handling, ...)
.. function:: urlencode(query, doseq=0)
.. function:: urlencode(query, doseq=False)
A version of Python's :func:`urllib.parse.urlencode` function that can
operate on ``MultiValueDict`` and non-string values.