Replies: 1 comment 1 reply
-
This is an IDE issue, not a LIEF issue:
I don't plan to address this request as it would mean duplicating the documentation in two places:
You should ask VSCode to address this limitation |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Yes, LIEF has Python port API. We can see all API easliy in any Python interpreter:
But lief is a
pyd
module. Our IDE don't knowpyd
's API, so we create stubs, let it tell IDE what API does LIEF has. Just as we discussed in #650Yes, Python module
LIEF
has docstring. We can see it easliy in any Python interpreter.But lief is a
pyd
module. Our IDE don't knowpyd
's API and the Docstring of API, so we also need create stubs with Docstring, let it tell IDE what Docstring is for this API. Just as tttapa said:Beta Was this translation helpful? Give feedback.
All reactions