Skip to content

Commit

Permalink
Make sure dunderscore docstrings are included (#418)
Browse files Browse the repository at this point in the history
  • Loading branch information
erikkemperman committed Jun 5, 2019
1 parent 7edf352 commit 1e8c170
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,13 @@
'sphinxcontrib_dooble',
]

# Include a separate entry for special methods, like __init__, where provided.
autodoc_default_options = {
'member-order': 'bysource',
'special-members': True,
'exclude-members': '__dict__,__weakref__'
}

# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']

Expand Down
8 changes: 4 additions & 4 deletions rx/subject/behaviorsubject.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ def __init__(self, value) -> None:
creates a subject that caches its last value and starts with the
specified value.
Keyword parameters:
:param T value: Initial value sent to observers when no other
value has been received by the subject yet.
Args:
value: Initial value sent to observers when no other value has been
received by the subject yet.
"""

super().__init__()
Expand Down Expand Up @@ -55,7 +55,7 @@ def dispose(self) -> None:
"""Release all resources.
Releases all resources used by the current instance of the
ReplaySubject class and unsubscribe all observers.
BehaviorSubject class and unsubscribe all observers.
"""

with self.lock:
Expand Down

0 comments on commit 1e8c170

Please sign in to comment.