Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Stack Of Tasks
pinocchio
Commits
f0e6fb41
Verified
Commit
f0e6fb41
authored
Nov 16, 2019
by
Justin Carpentier
Browse files
python: do not show C++ signature in docstring
parent
7fbe6397
Changes
1
Hide whitespace changes
Inline
Side-by-side
bindings/python/module.cpp
View file @
f0e6fb41
...
...
@@ -21,8 +21,9 @@ using namespace pinocchio::python;
BOOST_PYTHON_MODULE
(
libpinocchio_pywrap
)
{
bp
::
scope
().
attr
(
"__version__"
)
=
pinocchio
::
printVersion
(
);
bp
::
docstring_options
module_docstring_options
(
true
,
true
,
false
);
bp
::
scope
().
attr
(
"__version__"
)
=
pinocchio
::
printVersion
();
bp
::
scope
().
attr
(
"__raw_version__"
)
=
bp
::
str
(
PINOCCHIO_VERSION
);
eigenpy
::
enableEigenPy
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment