summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/utils.txt7
1 files changed, 6 insertions, 1 deletions
diff --git a/docs/ref/utils.txt b/docs/ref/utils.txt
index dcc354e2e2..921aba5de8 100644
--- a/docs/ref/utils.txt
+++ b/docs/ref/utils.txt
@@ -853,8 +853,8 @@ appropriate entities.
#. Converting to lowercase.
#. Removing characters that aren't alphanumerics, underscores, hyphens, or
whitespace.
- #. Removing leading and trailing whitespace.
#. Replacing any whitespace or repeated dashes with single dashes.
+ #. Removing leading and trailing whitespace, dashes, and underscores.
For example::
@@ -867,6 +867,11 @@ appropriate entities.
>>> slugify('你好 World', allow_unicode=True)
'你好-world'
+ .. versionchanged:: 3.2
+
+ In older versions, leading and trailing dashes and underscores are not
+ removed.
+
.. _time-zone-selection-functions:
``django.utils.timezone``