Commit 90161375 authored by Senthil Kumaran's avatar Senthil Kumaran

Doc fix for the issue2637.

parent 8dcd06fc
...@@ -203,9 +203,10 @@ Utility functions ...@@ -203,9 +203,10 @@ Utility functions
.. function:: quote(string[, safe]) .. function:: quote(string[, safe])
Replace special characters in *string* using the ``%xx`` escape. Letters, Replace special characters in *string* using the ``%xx`` escape. Letters,
digits, and the characters ``'_.-'`` are never quoted. The optional *safe* digits, and the characters ``'_.-'`` are never quoted. By default, this
parameter specifies additional characters that should not be quoted --- its function is intended for quoting the path section of the URL.The optional
default value is ``'/'``. *safe* parameter specifies additional characters that should not be quoted
--- its default value is ``'/'``.
Example: ``quote('/~connolly/')`` yields ``'/%7econnolly/'``. Example: ``quote('/~connolly/')`` yields ``'/%7econnolly/'``.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment