Skip to content

Commit 8d5688e

Browse files
committed
docs
1 parent 059e53c commit 8d5688e

File tree

3 files changed

+14
-0
lines changed

3 files changed

+14
-0
lines changed

docs/api/async.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,7 @@ The async API is mostly identical to the sync API.
66
.. autoclass:: ahk._async.engine.AsyncAHK
77
:members:
88
:undoc-members:
9+
10+
.. autoclass:: ahk._async.transport.AsyncFutureResult
11+
:members:
12+
:undoc-members:

docs/api/sync.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,7 @@ The sync API is the default API described in most of the README.
88
.. autoclass:: ahk._sync.engine.AHK
99
:members:
1010
:undoc-members:
11+
12+
.. autoclass:: ahk._sync.transport.FutureResult
13+
:members:
14+
:undoc-members:

docs/conf.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,9 @@
3333

3434
html_theme = 'sphinx_rtd_theme'
3535
html_static_path = ['_static']
36+
37+
autodoc_default_options = {
38+
'member-order': 'bysource',
39+
'undoc-members': True,
40+
'special-members': '__init__',
41+
}

0 commit comments

Comments
 (0)