| Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
fixed typo `s/directally/directly/`
|
|
|
|
|
|
dependencies outside of a virtual-env
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
fixes Vector35/binaryninja-api#2206
|
|
Closes #2410
|
|
add Python API for retrieving all type fields referenced by code
change m_updatesRequired to std::atomic_bool
fix potential UAF after calling AnalysisCompletionEvent::Cancel()
|
|
Resolves #1873
|
|
Resolves #1318
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
instruction/expr text
|
|
|
|
|
|
|
|
|
|
|
|
This is technically correct (and for illustration):
```py
>>> "asdf"""
'asdf'
>>> "asdf""qwer"
'asdfqwer'
>>> def foo():
... "asdf"""
... return 4
...
>>> foo()
4
>>> foo.__doc__
'asdf'
```
But as it currently exists, it messes up some (admittedly, incorrect)
lexers/syntax highlighters (e.g. emacs's python-mode).
|
|
|
|
|
|
fix state initialization.
|
|
|
|
installation
|
|
|
|
|
|
|
|
|