[issue11832] Add option to pause regrtest to attach a debugger

2011-04-28 Thread Roundup Robot
Roundup Robot devnull@devnull added the comment: New changeset 3d9800fcce7f by Brian Curtin in branch 'default': Implement #11832. Add an option to start regrtest and wait for input http://hg.python.org/cpython/rev/3d9800fcce7f -- nosy: +python-dev

[issue11832] Add option to pause regrtest to attach a debugger

2011-04-28 Thread Brian Curtin
Changes by Brian Curtin br...@python.org: -- resolution: - fixed stage: patch review - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11832 ___

[issue11832] Add option to pause regrtest to attach a debugger

2011-04-12 Thread Georg Brandl
Georg Brandl ge...@python.org added the comment: I can't judge if the functionality is needed, but I don't think the option should be called attach if all it does is input() somewhere... -- nosy: +georg.brandl ___ Python tracker

[issue11832] Add option to pause regrtest to attach a debugger

2011-04-12 Thread Brian Curtin
Brian Curtin br...@python.org added the comment: True. In the end all it does is wait for input not specific to attaching debuggers. How about ``--wait``? I'm used to this functionality being `-x` in another app, so we're iteratively getting better :) --

[issue11832] Add option to pause regrtest to attach a debugger

2011-04-11 Thread Brian Curtin
New submission from Brian Curtin br...@python.org: Patch to add -a/--attach option to Lib/test/regrtest.py to pause before beginning test runs. This would allow a user to attach Visual Studio or some other debugger. Very simply, this option just blocks waiting for a keystroke during argument