diff options
author | Tim Graham <timograham@gmail.com> | 2016-01-22 19:01:54 -0500 |
---|---|---|
committer | Tim Graham <timograham@gmail.com> | 2016-03-05 11:00:12 -0500 |
commit | c3e22ba78d1f6a780d1181cb16e3240136f2ae59 (patch) | |
tree | 9b8cb65ffc2a7a8797a294093240befd449c9aa2 /docs/ref/utils.txt | |
parent | 9ed4a788aa8d6ba6a57a2daa15253c3047048dfb (diff) | |
download | django-24046.tar.gz |
Refs #24046 -- POC for mark_for_escaping() removal.24046
Diffstat (limited to 'docs/ref/utils.txt')
-rw-r--r-- | docs/ref/utils.txt | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/docs/ref/utils.txt b/docs/ref/utils.txt index 2a330ca953..c696627fc6 100644 --- a/docs/ref/utils.txt +++ b/docs/ref/utils.txt @@ -840,14 +840,6 @@ appropriate entities. >>> type(mystr) <type 'str'> -.. function:: mark_for_escaping(s) - - Explicitly mark a string as requiring HTML escaping upon output. Has no - effect on ``SafeData`` subclasses. - - Can be called multiple times on a single string (the resulting escaping is - only applied once). - ``django.utils.text`` ===================== |