File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44"""
55*TL;DR80
66Encapsulates 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
710"""
811
912from __future__ import print_function
Original file line number Diff line number Diff line change 66
77*TL;DR80
88Maintains 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/
913"""
1014
1115from __future__ import print_function
Original file line number Diff line number Diff line change 77*TL;DR80
88Defines the skeleton of a base algorithm, deferring definition of exact
99steps to subclasses.
10+
11+ *Examples in Python ecosystem:
12+ Django class based views: https://docs.djangoproject.com/en/2.1/topics/class-based-views/
1013"""
1114
1215
You can’t perform that action at this time.
0 commit comments