summaryrefslogtreecommitdiff
path: root/Tools/gdb
Commit message (Collapse)AuthorAgeFilesLines
* libpython.py: fix support of non-BMP unicode charactersVictor Stinner2010-05-201-0/+28
| | | | | | | | Forward port some code from Python3: * join surrogate pairs if sizeof(Py_UNICODE)==2 * Enable non-BMP test on narrow builds using u"\U0001D121" instead of unichr(0x1D121)
* Issue #8437: Fix test_gdb failures, patch written by Dave MalcolmVictor Stinner2010-04-201-15/+15
|
* Issue #8279: Fix test_gdb failures.Martin v. Löwis2010-04-171-3/+18
|
* Issue #8032: For gdb7, a python-gdb.py file is added to the build,Martin v. Löwis2010-04-011-0/+1392
allowing to use advanced gdb features when debugging Python.