This commit cleans and modernizes the code base of LIEF.

Among the changes:

- It removes the ``and, or, not`` keywords
- It updates the Documentation
- It moves the internal structures in the ``details::`` namespace
This commit is contained in:
rthomas
2022-01-27 18:50:12 +01:00
committed by Romain Thomas
parent 540049d0d9
commit a615adbee4
625 changed files with 15701 additions and 15535 deletions
+4 -1
View File
@@ -30,7 +30,10 @@ using setter_t = void (Symbol::*)(T);
template<>
void create<Symbol>(py::module& m) {
py::class_<Symbol, Object>(m, "Symbol")
py::class_<Symbol, Object>(m, "Symbol",
R"delim(
This class represents a symbol in an executable format.
)delim")
.def(py::init())
.def_property("name",