summaryrefslogtreecommitdiff
path: root/Cython/Debugger/Tests
Commit message (Expand)AuthorAgeFilesLines
* Remove unused imports (GH-4643)Matus Valo2022-02-151-4/+1
* Fix call to run_distutils() in debugger test (GH-4256)Matti Picus2021-06-301-2/+3
* Add missing argument when instantiating a test class. The argument was added ...Stefan Behnel2021-06-281-0/+1
* Modernise code: use set literals/comprehensions where possible, frozenset whe...Stefan Behnel2021-04-131-1/+1
* Fix cygdb (GH-3542)Volker-Weissmann2020-08-242-9/+65
* Mark regex as raw string to avoid syntax warnings (#3000)DWesl2019-06-131-1/+1
* Remove support for Py2.6 and various quirks that special-cased it.gh2692_remove_py26_supportStefan Behnel2018-10-301-2/+2
* Make string handling and escaping in gdb tests safe.Stefan Behnel2017-09-041-8/+8
* Fix error reporting issue in gdb test.Stefan Behnel2017-09-041-2/+2
* Fix string type issue in gdb test.Stefan Behnel2017-09-041-1/+1
* Remove unused import that may not be available in all CPython or PyPy install...Stefan Behnel2017-08-181-1/+1
* Merge branch 'cygwin-tests' of https://github.com/embray/cython into embray-c...Stefan Behnel2017-02-123-1/+4
|\
| * Use a headerfile for cfuncs.c, otherwise this test code will fail to build on...Erik M. Bray2016-04-263-1/+4
* | Delete trailing spacesmathbunnyru2017-01-121-5/+5
* | Fix another test.Robert Bradshaw2016-09-081-5/+1
|/
* adapt metaclass usage to Py2/Py3Stefan Behnel2015-07-261-5/+7
* make dict iteration compatible with Py2/Py3Stefan Behnel2015-07-251-1/+1
* 2to3: Run the 'import' fixerPetr Viktorin2015-07-251-2/+2
* 2to3: Apply the 'except' fixerPetr Viktorin2015-07-251-1/+1
* clean up gdb version test in TestLibCython.pyStefan Behnel2014-10-191-29/+18
* disable gdb test failures as long as the tests don't actually workStefan Behnel2014-06-161-1/+3
* fix error output in testStefan Behnel2014-06-151-1/+1
* fix cygdb and its tests when run in Py3Stefan Behnel2014-05-241-13/+13
* fix last commitStefan Behnel2014-02-141-1/+1
* fix debugger testStefan Behnel2014-02-141-0/+1
* simplify cygdb test code to remove an unnecessary indentation levelStefan Behnel2014-01-181-42/+44
* remove redundant code from cygdb test and apply some safety fixesStefan Behnel2014-01-181-57/+20
* apply some safety fixes in test codeStefan Behnel2014-01-181-13/+23
* Rename many of the pyrex_ options to cython_ (as several are Cython-specific).Robert Bradshaw2012-01-222-2/+2
* Another gdb test fix.Robert Bradshaw2011-08-171-1/+4
* gdb test fixRobert Bradshaw2011-08-021-1/+4
* fix many empty __init__ filesLisandro Dalcin2011-04-011-0/+1
* Debugger: Update 'help' documentationMark Florisson2011-03-261-3/+1
* Debugger: Added 'cy set' commandMark Florisson2011-03-251-0/+10
* Debugger: Added $cy_eval() GDB functionMark Florisson2011-03-251-0/+16
* fix unused imports and Py2.4-isms in test codeStefan Behnel2011-02-051-4/+3
* fix Py2.5-isms in test codeStefan Behnel2011-02-051-3/+9
* Debugger: made test less verbose (#645)Mark Florisson2011-01-282-29/+44
* Restore cwd if debugger setUp() fails (to avoid breaking later tests).Robert Bradshaw2011-01-281-54/+59
* Avoid more gdb errors for insufficient gdb.Robert Bradshaw2011-01-281-15/+70
* Debugger: Fix backtrace test -- don't check for main()Mark Florisson2011-01-251-11/+10
* Debugger: Python 3 compatibility testsuiteMark Florisson2011-01-242-4/+7
* Debugger: Don't run test suite if GDB python version < 2.6Mark Florisson2011-01-241-5/+7
* Skip gdb if Python compiled with gdb not >= 2.5.Robert Bradshaw2011-01-231-2/+14
* Fix Python 3 testrunner and give a warning for Python 2 builds without debug ...Mark Florisson2011-01-182-2/+3
* Fix some warnings.Robert Bradshaw2011-01-141-1/+4
* Undo EOL whitespace additions.Robert Bradshaw2011-01-141-2/+2
* Debugger: Detect whether the scope object and cell and free variables have be...Mark Florisson2011-01-101-2/+5
* Debugger: Fix accessing cell variables in outer scopesMark Florisson2011-01-102-17/+22
* Debugger: Disable optimization for test cases manually as they don't use dist...Mark Florisson2011-01-082-76/+111