summaryrefslogtreecommitdiff
path: root/python
AgeCommit message (Collapse)Author
2021-04-07good thing the decorator wasnt applied to anything with an actual pydocJordan Wiens
2021-04-07adding passive decorator and annotate Variable classJordan Wiens
2021-04-07adding user_directory() python apiJordan Wiens
2021-04-06Fix docstring confusing some syntax highlightersKevin Orr
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).
2021-04-06Add support for duplicate symbol handling.Brian Potchik
2021-04-06Revert Variable.name setter as it breaks some usage of Variable objectsPeter LaFosse
2021-03-30Add ability to query for database backing of specific BinaryViewTypes and ↵Brian Potchik
fix state initialization.
2021-03-29capture stderr on plugin manager dependency installationJordan Wiens
2021-03-27fixes for windows and linux default python plus automatic dependency ↵Jordan Wiens
installation
2021-03-26updating to latest sphinx-rtd theme and many doc formatting fixesJordan Wiens
2021-03-24fixing layout for settings tableJordan Wiens
2021-03-19Minor spelling fixesPeter LaFosse
2021-03-19Minor formatting changesPeter LaFosse
2021-03-17Misc typo changes, const changes, code cleanup, and example updatesKyleMiles
2021-03-14Update settings documentation.Brian Potchik
2021-03-11fix namespace issue causing settings to be included in documentation twiceJordan Wiens
2021-03-09Fix python errors in dependency installationBrian Knudson
2021-03-04small typo in settings docsJordan Wiens
2021-03-04documentation updates on set_default_session_data and transformation apiJordan Wiens
2021-03-02Check if in virtualenv before dependency installationPeter LaFosse
2021-03-02pluginmanager fixesPeter LaFosse
2021-03-02PluginManager: Install dependencies before installationPeter LaFosse
2021-03-02Some python3 changesPeter LaFosse
2021-03-02Add ability to install python dependenciesPeter LaFosse
Refactor plugin repo loading into scripting provider. Find python binary for given python library
2021-03-01Add methods for creating wide char typesJosh Ferrell
2021-02-22Allow Universal archive architecture preference to be specified with the ↵Brian Potchik
get_view_of_file_with_options API.
2021-02-18add warning to remove_auto_segmentJordan Wiens
2021-02-18fix syntax error in pydoc warningsJordan Wiens
2021-02-17add support for type xref and variable xrefXusheng
2021-02-12Add unresolved control-flow tracking and associated tag support.Brian Potchik
2021-02-10small addition to setter for analysis_skippedJordan Wiens
2021-02-05fix max_instr_length note stylingJordan
2021-02-05improve the documentation of binaryview callbacksXusheng
2021-02-04Update documentation for get_view_of_file_with_options.Brian Potchik
2021-01-27Finish HLIL expression mapping APIs.Brian Potchik
2021-01-27Fix InstructionTextToken API passthroughPeter LaFosse
2021-01-23Changed SymbolType to Type in define_auto_symbol_and_var_or_function ↵Calle Svensson
documentation
2021-01-21Let calling conventions opt out of heuristicsGlenn Smith
2021-01-20Add get_lifted_ils_at API.Brian Potchik
2021-01-18updating copyright yearJordan Wiens
2021-01-18expose Function::IsVariableUserDefinded()Xusheng
2021-01-08add note about max_instr_length to Architecture classJordan Wiens
2021-01-07Update comment for has_data_variablescarsonharmon
2021-01-07improve documentation on BinaryViewEventXusheng
2021-01-06Check for data tag (arch/func == null) in callbacksGlenn Smith
Fixes #2195
2020-12-23Add GetLowLevelILInstructionsForAddress API to retrieve all LLIL for an address.Brian Potchik
2020-12-18Add API/UI to control dead store elimination of specific variablesRusty Wagner
2020-12-09Update settings documentation.Brian Potchik
2020-12-09Cleanup project creation and add API.Brian Potchik
2020-12-07initial support for contains operator on possible value setsJordan Wiens