summaryrefslogtreecommitdiffstats
path: root/Tools/gdb/libpython.py
Commit message (Collapse)AuthorAgeFilesLines
* Merged revisions 84635-84636 via svnmerge fromAntoine Pitrou2010-09-081-27/+38
| | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r84635 | antoine.pitrou | 2010-09-08 22:57:48 +0200 (mer., 08 sept. 2010) | 5 lines Issue #9188: The gdb extension now handles correctly narrow (UCS2) as well as wide (UCS4) unicode builds for both the host interpreter (embedded inside gdb) and the interpreter under test. ........ r84636 | antoine.pitrou | 2010-09-08 23:07:40 +0200 (mer., 08 sept. 2010) | 4 lines Add a safety limit to the number of unicode characters we fetch (followup to r84635, suggested by Dave Malcolm). ........
* Merged revisions 82872,82874 via svnmerge fromGeorg Brandl2010-07-141-0/+1
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r82872 | georg.brandl | 2010-07-14 10:53:18 +0200 (Mi, 14 Jul 2010) | 1 line Remove XXX from text. ........ r82874 | georg.brandl | 2010-07-14 10:54:40 +0200 (Mi, 14 Jul 2010) | 1 line #9235: fix missing import of sys. ........
* 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.