File tree 2 files changed +11
-4
lines changed
2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 60
60
'sphinxcontrib_dooble' ,
61
61
]
62
62
63
+ # Include a separate entry for special methods, like __init__, where provided.
64
+ autodoc_default_options = {
65
+ 'member-order' : 'bysource' ,
66
+ 'special-members' : True ,
67
+ 'exclude-members' : '__dict__,__weakref__'
68
+ }
69
+
63
70
# Add any paths that contain templates here, relative to this directory.
64
71
templates_path = ['_templates' ]
65
72
Original file line number Diff line number Diff line change @@ -17,9 +17,9 @@ def __init__(self, value) -> None:
17
17
creates a subject that caches its last value and starts with the
18
18
specified value.
19
19
20
- Keyword parameters :
21
- :param T value: Initial value sent to observers when no other
22
- value has been received by the subject yet.
20
+ Args :
21
+ value: Initial value sent to observers when no other value has been
22
+ received by the subject yet.
23
23
"""
24
24
25
25
super ().__init__ ()
@@ -55,7 +55,7 @@ def dispose(self) -> None:
55
55
"""Release all resources.
56
56
57
57
Releases all resources used by the current instance of the
58
- ReplaySubject class and unsubscribe all observers.
58
+ BehaviorSubject class and unsubscribe all observers.
59
59
"""
60
60
61
61
with self .lock :
You can’t perform that action at this time.
0 commit comments