summaryrefslogtreecommitdiff
path: root/docs/topics
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2012-02-27 22:52:07 +0000
committerAymeric Augustin <aymeric.augustin@m4x.org>2012-02-27 22:52:07 +0000
commit2ddfcfbec67e1373dd61ed1640ff6ddcdef9e3aa (patch)
tree37ca4787802089b63f552ffc69c63b0c28fe6d8f /docs/topics
parentce88b57b9aca0325e5b90944019f602a92f93475 (diff)
Clarified the fact that the signal_changed signal isn't used by Django itself (yet). Refs #17787.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17597 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/topics')
-rw-r--r--docs/topics/testing.txt12
1 files changed, 7 insertions, 5 deletions
diff --git a/docs/topics/testing.txt b/docs/topics/testing.txt
index 5980740a36..910ee05031 100644
--- a/docs/topics/testing.txt
+++ b/docs/topics/testing.txt
@@ -1477,11 +1477,13 @@ decorate the class::
.. note::
- When overriding settings make sure to also handle the cases in which
- Django or your app's code uses a cache or similar feature that retains
- state even if the setting is changed. Django provides the
- :data:`django.test.signals.setting_changed` signal to connect cleanup
- and other state-resetting callbacks to.
+ When overriding settings make sure to also handle the cases in which your
+ app's code uses a cache or similar feature that retains state even if the
+ setting is changed. Django provides the
+ :data:`django.test.signals.setting_changed` signal to connect cleanup and
+ other state-resetting callbacks to. Note that this signal isn't currently
+ used by Django itself, so changing built-in settings may not yield the
+ results you expect.
Emptying the test outbox
~~~~~~~~~~~~~~~~~~~~~~~~