several "assert" statements in the code
Created by: siebenkopf
it appears that the C++ code contains several assert statements, which will either be ignored, i.e., when compiled with -DNDEBUG (the default!!) or raise C-Style exceptions, which cannot be caught by the Python bindings.
Is it possible to change these asserts into proper tests that raise exceptions?