We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 253e207 commit 543824fCopy full SHA for 543824f
docs/Project.toml
@@ -1,3 +1,6 @@
1
[deps]
2
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
3
PythonCall = "6099a3de-0909-46bc-b1f4-468b9a2dfc0d"
4
+
5
+[compat]
6
+Documenter = "0.27" # TODO: upgrade to v1
src/abstract/builtins.jl
@@ -8,16 +8,16 @@ Equivalent to `print(...)` in Python.
8
pyprint(args...; kwargs...) = (pydel!(pybuiltins.print(args...; kwargs...)); nothing)
9
export pyprint
10
11
-"""
12
- pyhelp([x])
13
-
14
-Equivalent to `help(x)` in Python.
15
16
function _pyhelp(args...)
17
pyisnone(pybuiltins.help) && error("Python help is not available")
18
pydel!(pybuiltins.help(args...))
19
nothing
20
end
+"""
+ pyhelp([x])
+Equivalent to `help(x)` in Python.
21
pyhelp() = _pyhelp()
22
pyhelp(x) = _pyhelp(x)
23
export pyhelp
0 commit comments