File tree Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 1
1
[deps ]
2
2
Documenter = " e30172f5-a6a5-5a46-863b-614d45cd2de4"
3
3
PythonCall = " 6099a3de-0909-46bc-b1f4-468b9a2dfc0d"
4
+
5
+ [compat ]
6
+ Documenter = " 0.27" # TODO: upgrade to v1
Original file line number Diff line number Diff line change @@ -8,16 +8,16 @@ Equivalent to `print(...)` in Python.
8
8
pyprint (args... ; kwargs... ) = (pydel! (pybuiltins. print (args... ; kwargs... )); nothing )
9
9
export pyprint
10
10
11
- """
12
- pyhelp([x])
13
-
14
- Equivalent to `help(x)` in Python.
15
- """
16
11
function _pyhelp (args... )
17
12
pyisnone (pybuiltins. help) && error (" Python help is not available" )
18
13
pydel! (pybuiltins. help (args... ))
19
14
nothing
20
15
end
16
+ """
17
+ pyhelp([x])
18
+
19
+ Equivalent to `help(x)` in Python.
20
+ """
21
21
pyhelp () = _pyhelp ()
22
22
pyhelp (x) = _pyhelp (x)
23
23
export pyhelp
You can’t perform that action at this time.
0 commit comments