aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Plugins/ScriptInterpreter/Python
AgeCommit message (Expand)AuthorFilesLines
2016-09-12This is the main part of a change to add breakpoint save and restore to lldb.Jim Ingham1-7/+8
2016-09-12Fix about a dozen compile warningsIlia K1-1/+1
2016-09-06*** This commit represents a complete reformatting of the LLDB source codeKate Stone7-4974/+4434
2016-08-19Moved #include for lldb-python.h to a distinct group with a reminder commentKate Stone3-1/+7
2016-08-11Make sure files include what they use (part 2/2)Pavel Labath2-3/+3
2016-08-10Fix a problem where if a uint64_t value is placed into a python dictionary an...Greg Clayton1-1/+12
2016-08-09Delete Host/windows/win32.hZachary Turner2-3/+9
2016-08-05Add a few more needed bits to the scripted thread plans.Jim Ingham2-0/+19
2016-07-20Add a default-value bool flag pretty_print to the StructuredData Dump methods.Jason Molenda2-2/+2
2016-06-24Fix an issue where the @lldb.command marker would not work with the new 5-arg...Enrico Granata2-1/+26
2016-05-16Don't crash when OS plug-in returns None from any of the functions we might c...Greg Clayton1-16/+24
2016-05-02Add support for synthetic child providers to optionally return a customized t...Enrico Granata2-0/+68
2016-04-12Initialize the Python script interpreter lazily (i.e. not at debugger startup)Enrico Granata1-4/+4
2016-04-12Revert "Restore the lazy initialization of ScriptInterpreterPython, which was...Pavel Labath2-8/+8
2016-04-12Restore the lazy initialization of ScriptInterpreterPython, which was lost as...Enrico Granata2-8/+8
2016-04-07Fix TestImport for Windows by ensuring backslashes in the directory paths are...Adrian McCarthy1-7/+8
2016-03-24Make File option flags consistent for Python APIStephane Sezer1-2/+2
2016-03-22Unicode support on Win32.Zachary Turner1-3/+4
2016-03-10Fixed the python interpreter so that it correctly inherits the top IOHandler'...Greg Clayton2-37/+38
2016-02-09Fix an issue where pressing CTRL+C in the interactive script interpreter caus...Enrico Granata1-1/+1
2016-01-28Remove autoconf support from source directories.Eugene Zelenko1-14/+0
2016-01-28Fix const cast error for MSVC2015 build.Aidan Dodds1-1/+1
2016-01-25Fix swig typemap for SBEvent.Zachary Turner2-0/+119
2016-01-13Fix an issue where scripted commands would not actually print any of their ou...Enrico Granata2-0/+22
2016-01-11Don't define Bytes and String to be the same number on Py2.Zachary Turner1-4/+0
2016-01-11Fix Python 3 issues related to OS plugins.Zachary Turner1-3/+3
2016-01-11Introduce a PythonBytes class into PythonDataObjects.Zachary Turner2-0/+145
2015-12-04Python 3 - Fix script import --allow-reload.Zachary Turner1-3/+8
2015-11-16Python3 - Fix some issues related to `PythonFile` class.Zachary Turner1-0/+6
2015-11-13Remove debugging code left in by accident.Zachary Turner1-2/+0
2015-11-13Modernize FormatBacktrace() and make portable for Python 3.Zachary Turner3-21/+26
2015-11-13Another fix for LLDB_DISABLE_PYTHON=1Zachary Turner1-1/+5
2015-11-13Make PythonDataObjects.h work when LLDB_DISABLE_PYTHON=1Zachary Turner2-0/+8
2015-11-13Fix a bug in PythonExceptionState and add unittest coverage.Zachary Turner2-0/+13
2015-11-13Introduce a `PythonExceptionState` class.Zachary Turner4-85/+263
2015-11-12Fix non-Windows build after r252906.Zachary Turner2-3/+3
2015-11-12Begin converting uses of PyCallable to PythonCallable.Zachary Turner2-15/+49
2015-11-11Create `PythonTuple` and `PythonCallable` wrapper classes.Zachary Turner2-6/+322
2015-11-11Add a `PythonModule` class, and a root-level method for resolving names.Zachary Turner2-12/+136
2015-10-24Fix Clang-tidy modernize-use-override warnings in some files in source/Plugin...Eugene Zelenko2-58/+78
2015-10-21[SBValue] Add a method GetNumChildren(uint32_t max)Siva Chandra2-4/+4
2015-10-20Fix potential file i/o problem with python handles.Zachary Turner4-37/+50
2015-10-16Fix linkage of `init_lldb` SWIG method in Python 3.Zachary Turner1-1/+5
2015-10-16Convert SWIG typemap string operations to PythonObjects.Zachary Turner2-5/+44
2015-10-16Update SWIG typemaps to use `PythonFile`.Zachary Turner2-1/+26
2015-10-15Introduce a `PythonFile` object, and use it everywhere.Zachary Turner4-34/+133
2015-10-14Make uses of /dev/null portable across OSes.Zachary Turner1-2/+3
2015-10-14Get Python unit tests working with Python 3.Zachary Turner1-39/+28
2015-10-14Avoid a -Wreorder warning in ScriptInterpreterPython.cpp.Stephane Sezer1-2/+2
2015-10-14Fix Python initialization for Python 3.Zachary Turner1-46/+91