summaryrefslogtreecommitdiff
path: root/docs/internals
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2013-09-16 12:52:05 -0400
committerTim Graham <timograham@gmail.com>2013-09-16 12:52:05 -0400
commit18ffdb1772ba60e085cff8fd9a1d4a7b129b4032 (patch)
tree69ea529302e5c498e6b020b03c30e2ccf4a21936 /docs/internals
parent8d29005524b141da8ff4d9b9bc4d858d43bb7154 (diff)
Fixed #17627 -- Renamed util.py files to utils.py
Thanks PaulM for the suggestion and Luke Granger-Brown and Wiktor KoƂodziej for the initial patch.
Diffstat (limited to 'docs/internals')
-rw-r--r--docs/internals/deprecation.txt9
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt
index 054e3b32fc..9e473dfa46 100644
--- a/docs/internals/deprecation.txt
+++ b/docs/internals/deprecation.txt
@@ -444,6 +444,15 @@ these changes.
* ``ModelAdmin.declared_fieldsets`` will be removed.
+* Instances of ``util.py`` in the Django codebase have been renamed to
+ ``utils.py`` in an effort to unify all util and utils references.
+ The modules that provided backwards compatability will be removed:
+
+ * ``django.contrib.admin.util``
+ * ``django.contrib.gis.db.backends.util``
+ * ``django.db.backends.util``
+ * ``django.forms.util``
+
2.0
---