We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In numpy randint is not found (along with everything else from mtrand):
randint
mtrand
from symbol_exporter.python_so_extractor import CompiledPythonLib lib = CompiledPythonLib("lib/python3.9/site-packages/numpy/random/mtrand.cpython") lib.find_symbols() # == {'methods': [], 'objects': [], 'name': 'mtrand', 'docstring': None}
Disassembling the binary in Ghidra shows that the module's PyInit function is trivial:
PyInit
void PyInit_mtrand(void) { PyModuleDef_Init(__pyx_moduledef); return; }
though __pyx_moduledef is empty. Something must be filling it though I'm not sure what so I'll have to debug with gdb.
__pyx_moduledef
gdb
The text was updated successfully, but these errors were encountered:
chrisburr
No branches or pull requests
In numpy
randint
is not found (along with everything else frommtrand
):Disassembling the binary in Ghidra shows that the module's
PyInit
function is trivial:though
__pyx_moduledef
is empty. Something must be filling it though I'm not sure what so I'll have to debug withgdb
.The text was updated successfully, but these errors were encountered: