mirror of
https://github.com/pybind/pybind11.git
synced 2026-05-12 17:26:13 +00:00
Merge pull request #119 from SylvainCorlay/docstring
Signature formatting for sphinx
This commit is contained in:
@@ -1,22 +1,22 @@
|
||||
Help on built-in function kw_func in module example
|
||||
|
||||
kkww__ffuunncc(...)
|
||||
Signature : (x : int, y : int) -> NoneType
|
||||
kw_func(x : int, y : int) -> NoneType
|
||||
|
||||
Help on built-in function kw_func2 in module example
|
||||
|
||||
kkww__ffuunncc22(...)
|
||||
Signature : (x : int = 100L, y : int = 200L) -> NoneType
|
||||
kw_func2(x : int = 100L, y : int = 200L) -> NoneType
|
||||
|
||||
Help on built-in function kw_func3 in module example
|
||||
|
||||
kkww__ffuunncc33(...)
|
||||
Signature : (data : unicode = u'Hello world!') -> NoneType
|
||||
kw_func3(data : unicode = u'Hello world!') -> NoneType
|
||||
|
||||
Help on built-in function kw_func4 in module example
|
||||
|
||||
kkww__ffuunncc44(...)
|
||||
Signature : (myList : list<int> = [13L, 17L]) -> NoneType
|
||||
kw_func4(myList : list<int> = [13L, 17L]) -> NoneType
|
||||
|
||||
kw_func(x=5, y=10)
|
||||
kw_func(x=5, y=10)
|
||||
|
||||
Reference in New Issue
Block a user