diff options
| author | Tim Graham <timograham@gmail.com> | 2016-11-07 14:46:42 +0000 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2017-01-17 14:09:28 -0500 |
| commit | 03087f80d14969ebfc7b81f54096941c60c9b52b (patch) | |
| tree | 2a8d49d30cb7d77d0b1dfd5525410b2c585221a9 /docs | |
| parent | e8dac72a553a0deedfef6ae90495d89d9bc089c8 (diff) | |
Refs #24205 -- Removed Signal.disconnect()'s weak argument.
Per deprecation timeline.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/releases/2.0.txt | 3 | ||||
| -rw-r--r-- | docs/topics/signals.txt | 5 |
2 files changed, 3 insertions, 5 deletions
diff --git a/docs/releases/2.0.txt b/docs/releases/2.0.txt index 738f488456..ebd8089015 100644 --- a/docs/releases/2.0.txt +++ b/docs/releases/2.0.txt @@ -233,3 +233,6 @@ These features have reached the end of their deprecation cycle and are removed in Django 2.0. See :ref:`deprecated-features-1.9` and :ref:`deprecated-features-1.10` for details, including how to remove usage of these features. + +* The ``weak`` argument to ``django.dispatch.signals.Signal.disconnect()`` is + removed. diff --git a/docs/topics/signals.txt b/docs/topics/signals.txt index 19c0cd3d33..ad2b66f6df 100644 --- a/docs/topics/signals.txt +++ b/docs/topics/signals.txt @@ -277,8 +277,3 @@ arguments are as described in :meth:`.Signal.connect`. The method returns The ``receiver`` argument indicates the registered receiver to disconnect. It may be ``None`` if ``dispatch_uid`` is used to identify the receiver. - -.. deprecated:: 1.9 - - The ``weak`` argument is deprecated as it has no effect. It will be removed - in Django 2.0. |
