Closed dnet closed 9 years ago
Just a question, if we create multiple Disassembler object, is Capstone imported each time ? Because in the interactive mode, a new Disassembler object is created when we call the command load
.
No, Capstone is imported only the first time; all later attempts will be served from the already imported module in sys.modules
, which implements a caching scheme similar to yours.
Alright thanks, merge done.
Half of the 6 commits are smal fixes, the other three have detailed explanations in the commit messages.