mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-11 08:03:55 +00:00
f33f6afb66
* chore(deps): update pre-commit hooks updates: - [github.com/pre-commit/mirrors-clang-format: v17.0.6 → v18.1.2](https://github.com/pre-commit/mirrors-clang-format/compare/v17.0.6...v18.1.2) - [github.com/astral-sh/ruff-pre-commit: v0.2.0 → v0.3.5](https://github.com/astral-sh/ruff-pre-commit/compare/v0.2.0...v0.3.5) - [github.com/pre-commit/mirrors-mypy: v1.8.0 → v1.9.0](https://github.com/pre-commit/mirrors-mypy/compare/v1.8.0...v1.9.0) - [github.com/Lucas-C/pre-commit-hooks: v1.5.4 → v1.5.5](https://github.com/Lucas-C/pre-commit-hooks/compare/v1.5.4...v1.5.5) - [github.com/sirosen/texthooks: 0.6.4 → 0.6.6](https://github.com/sirosen/texthooks/compare/0.6.4...0.6.6) - [github.com/shellcheck-py/shellcheck-py: v0.9.0.6 → v0.10.0.1](https://github.com/shellcheck-py/shellcheck-py/compare/v0.9.0.6...v0.10.0.1) - [github.com/PyCQA/pylint: v3.0.3 → v3.1.0](https://github.com/PyCQA/pylint/compare/v3.0.3...v3.1.0) - [github.com/python-jsonschema/check-jsonschema: 0.28.0 → 0.28.1](https://github.com/python-jsonschema/check-jsonschema/compare/0.28.0...0.28.1) * style: pre-commit fixes * fix(types): correction for better typing Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> --------- Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Henry Schreiner <henryschreineriii@gmail.com>
130 lines
4.3 KiB
C++
130 lines
4.3 KiB
C++
/*
|
|
tests/test_docstring_options.cpp -- generation of docstrings and signatures
|
|
|
|
Copyright (c) 2016 Wenzel Jakob <wenzel.jakob@epfl.ch>
|
|
|
|
All rights reserved. Use of this source code is governed by a
|
|
BSD-style license that can be found in the LICENSE file.
|
|
*/
|
|
|
|
#include "pybind11_tests.h"
|
|
|
|
TEST_SUBMODULE(docstring_options, m) {
|
|
// test_docstring_options
|
|
{
|
|
py::options options;
|
|
options.disable_function_signatures();
|
|
|
|
m.def("test_function1", [](int, int) {}, py::arg("a"), py::arg("b"));
|
|
m.def("test_function2", [](int, int) {}, py::arg("a"), py::arg("b"), "A custom docstring");
|
|
|
|
m.def("test_overloaded1", [](int) {}, py::arg("i"), "Overload docstring");
|
|
m.def("test_overloaded1", [](double) {}, py::arg("d"));
|
|
|
|
m.def("test_overloaded2", [](int) {}, py::arg("i"), "overload docstring 1");
|
|
m.def("test_overloaded2", [](double) {}, py::arg("d"), "overload docstring 2");
|
|
|
|
m.def("test_overloaded3", [](int) {}, py::arg("i"));
|
|
m.def("test_overloaded3", [](double) {}, py::arg("d"), "Overload docstr");
|
|
|
|
options.enable_function_signatures();
|
|
|
|
m.def("test_function3", [](int, int) {}, py::arg("a"), py::arg("b"));
|
|
m.def("test_function4", [](int, int) {}, py::arg("a"), py::arg("b"), "A custom docstring");
|
|
|
|
options.disable_function_signatures().disable_user_defined_docstrings();
|
|
|
|
m.def("test_function5", [](int, int) {}, py::arg("a"), py::arg("b"), "A custom docstring");
|
|
|
|
{
|
|
py::options nested_options;
|
|
nested_options.enable_user_defined_docstrings();
|
|
m.def(
|
|
"test_function6",
|
|
[](int, int) {},
|
|
py::arg("a"),
|
|
py::arg("b"),
|
|
"A custom docstring");
|
|
}
|
|
}
|
|
|
|
m.def("test_function7", [](int, int) {}, py::arg("a"), py::arg("b"), "A custom docstring");
|
|
|
|
{
|
|
py::options options;
|
|
options.disable_user_defined_docstrings();
|
|
options.disable_function_signatures();
|
|
|
|
m.def("test_function8", []() {});
|
|
}
|
|
|
|
{
|
|
py::options options;
|
|
options.disable_user_defined_docstrings();
|
|
|
|
struct DocstringTestFoo {
|
|
int value;
|
|
void setValue(int v) { value = v; }
|
|
int getValue() const { return value; }
|
|
};
|
|
py::class_<DocstringTestFoo>(m, "DocstringTestFoo", "This is a class docstring")
|
|
.def_property("value_prop",
|
|
&DocstringTestFoo::getValue,
|
|
&DocstringTestFoo::setValue,
|
|
"This is a property docstring");
|
|
}
|
|
|
|
{
|
|
enum class DocstringTestEnum1 { Member1, Member2 };
|
|
|
|
py::enum_<DocstringTestEnum1>(m, "DocstringTestEnum1", "Enum docstring")
|
|
.value("Member1", DocstringTestEnum1::Member1)
|
|
.value("Member2", DocstringTestEnum1::Member2);
|
|
}
|
|
|
|
{
|
|
py::options options;
|
|
options.enable_enum_members_docstring();
|
|
|
|
enum class DocstringTestEnum2 { Member1, Member2 };
|
|
|
|
py::enum_<DocstringTestEnum2>(m, "DocstringTestEnum2", "Enum docstring")
|
|
.value("Member1", DocstringTestEnum2::Member1)
|
|
.value("Member2", DocstringTestEnum2::Member2);
|
|
}
|
|
|
|
{
|
|
py::options options;
|
|
options.disable_enum_members_docstring();
|
|
|
|
enum class DocstringTestEnum3 { Member1, Member2 };
|
|
|
|
py::enum_<DocstringTestEnum3>(m, "DocstringTestEnum3", "Enum docstring")
|
|
.value("Member1", DocstringTestEnum3::Member1)
|
|
.value("Member2", DocstringTestEnum3::Member2);
|
|
}
|
|
|
|
{
|
|
py::options options;
|
|
options.disable_user_defined_docstrings();
|
|
|
|
enum class DocstringTestEnum4 { Member1, Member2 };
|
|
|
|
py::enum_<DocstringTestEnum4>(m, "DocstringTestEnum4", "Enum docstring")
|
|
.value("Member1", DocstringTestEnum4::Member1)
|
|
.value("Member2", DocstringTestEnum4::Member2);
|
|
}
|
|
|
|
{
|
|
py::options options;
|
|
options.disable_user_defined_docstrings();
|
|
options.disable_enum_members_docstring();
|
|
|
|
enum class DocstringTestEnum5 { Member1, Member2 };
|
|
|
|
py::enum_<DocstringTestEnum5>(m, "DocstringTestEnum5", "Enum docstring")
|
|
.value("Member1", DocstringTestEnum5::Member1)
|
|
.value("Member2", DocstringTestEnum5::Member2);
|
|
}
|
|
}
|