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 11[deps ]
22Documenter = " e30172f5-a6a5-5a46-863b-614d45cd2de4"
33PythonCall = " 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.
88pyprint (args... ; kwargs... ) = (pydel! (pybuiltins. print (args... ; kwargs... )); nothing )
99export pyprint
1010
11- """
12- pyhelp([x])
13-
14- Equivalent to `help(x)` in Python.
15- """
1611function _pyhelp (args... )
1712 pyisnone (pybuiltins. help) && error (" Python help is not available" )
1813 pydel! (pybuiltins. help (args... ))
1914 nothing
2015end
16+ """
17+ pyhelp([x])
18+
19+ Equivalent to `help(x)` in Python.
20+ """
2121pyhelp () = _pyhelp ()
2222pyhelp (x) = _pyhelp (x)
2323export pyhelp
You can’t perform that action at this time.
0 commit comments