File tree Expand file tree Collapse file tree 3 files changed +14
-0
lines changed Expand file tree Collapse file tree 3 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -6,3 +6,7 @@ The async API is mostly identical to the sync API.
6
6
.. autoclass :: ahk._async.engine.AsyncAHK
7
7
:members:
8
8
:undoc-members:
9
+
10
+ .. autoclass :: ahk._async.transport.AsyncFutureResult
11
+ :members:
12
+ :undoc-members:
Original file line number Diff line number Diff line change @@ -8,3 +8,7 @@ The sync API is the default API described in most of the README.
8
8
.. autoclass :: ahk._sync.engine.AHK
9
9
:members:
10
10
:undoc-members:
11
+
12
+ .. autoclass :: ahk._sync.transport.FutureResult
13
+ :members:
14
+ :undoc-members:
Original file line number Diff line number Diff line change 33
33
34
34
html_theme = 'sphinx_rtd_theme'
35
35
html_static_path = ['_static' ]
36
+
37
+ autodoc_default_options = {
38
+ 'member-order' : 'bysource' ,
39
+ 'undoc-members' : True ,
40
+ 'special-members' : '__init__' ,
41
+ }
You can’t perform that action at this time.
0 commit comments