summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_gdb.py
Commit message (Collapse)AuthorAgeFilesLines
* Close issue #8600: test_gdb failures because innocuous warningsJesus Cea2011-03-161-0/+3
|
* Merged revisions 86596 via svnmerge fromEzio Melotti2010-11-211-40/+39
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86596 | ezio.melotti | 2010-11-20 21:04:17 +0200 (Sat, 20 Nov 2010) | 1 line #9424: Replace deprecated assert* methods in the Python test suite. ........
* Merged revisions 82647 via svnmerge fromAntoine Pitrou2010-07-081-0/+10
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r82647 | antoine.pitrou | 2010-07-08 20:51:30 +0200 (jeu., 08 juil. 2010) | 3 lines Issue #8605: Skip test_gdb if Python is compiled with optimizations. ........
* libpython.py: fix support of non-BMP unicode charactersVictor Stinner2010-05-201-8/+2
| | | | | | | | 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 #8600: fix test_gdb failures when gdb issues some spurious warnings.Antoine Pitrou2010-05-051-0/+5
|
* Issue #8437: Fix test_gdb failures, patch written by Dave MalcolmVictor Stinner2010-04-201-0/+19
|
* Issue #8279: Fix test_gdb failures.Martin v. Löwis2010-04-171-45/+42
|
* Re-enable all tests, to see which ones fail on the buildbots.Martin v. Löwis2010-04-121-6/+6
|
* Issue #8330: Fix expected output in test_gdb.Martin v. Löwis2010-04-121-10/+28
|
* Issue #8337: Disable the remaining test also for now.Martin v. Löwis2010-04-071-1/+1
|
* Issue 8316: make test_gdb robust in the face of differing terminalR. David Murray2010-04-051-14/+13
| | | | widths. Patch by Dave Malcolm.
* Issue #8032: For gdb7, a python-gdb.py file is added to the build,Martin v. Löwis2010-04-011-0/+658
allowing to use advanced gdb features when debugging Python.