File tree Expand file tree Collapse file tree 3 files changed +10
-0
lines changed Expand file tree Collapse file tree 3 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 4
4
"""
5
5
*TL;DR80
6
6
Encapsulates all information needed to perform an action or trigger an event.
7
+
8
+ *Examples in Python ecosystem:
9
+ Django HttpRequest (without `execute` method): https://docs.djangoproject.com/en/2.1/ref/request-response/#httprequest-objects
7
10
"""
8
11
9
12
from __future__ import print_function
Original file line number Diff line number Diff line change 6
6
7
7
*TL;DR80
8
8
Maintains a list of dependents and notifies them of any state changes.
9
+
10
+ *Examples in Python ecosystem:
11
+ Django Signals: https://docs.djangoproject.com/en/2.1/topics/signals/
12
+ Flask Signals: http://flask.pocoo.org/docs/1.0/signals/
9
13
"""
10
14
11
15
from __future__ import print_function
Original file line number Diff line number Diff line change 7
7
*TL;DR80
8
8
Defines the skeleton of a base algorithm, deferring definition of exact
9
9
steps to subclasses.
10
+
11
+ *Examples in Python ecosystem:
12
+ Django class based views: https://docs.djangoproject.com/en/2.1/topics/class-based-views/
10
13
"""
11
14
12
15
You can’t perform that action at this time.
0 commit comments