Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!news.albasani.net!rt.uk.eu.org!newsfeed.xs4all.nl!newsfeed2.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.001 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'url:pypi': 0.03; 'interpreter': 0.05; 'debugging': 0.07; 'interpreter.': 0.07; 'python3': 0.07; 'session.': 0.07; 'subject:ANN': 0.07; 'subject:features': 0.09; 'runs': 0.10; 'python': 0.11; '2.7': 0.14; 'breakpoint': 0.16; 'command.': 0.16; 'hard-coded': 0.16; 'pdb': 0.16; 'subject: \n ': 0.16; 'subject:1.6': 0.16; 'supported:': 0.16; 'unchanged': 0.16; 'attach': 0.16; 'fix': 0.17; 'entered': 0.20; 'command': 0.22; 'header:User-Agent:1': 0.23; 'skip:` 20': 0.24; 'versions': 0.24; 'script': 0.25; 'code': 0.31; '3.2': 0.31; 'interface': 0.32; 'option': 0.32; 'run': 0.32; 'another': 0.32; 'url:python': 0.33; 'bugs': 0.33; 'subject:the': 0.34; 'subject:with': 0.35; 'except': 0.35; 'test': 0.35; 'received:google.com': 0.35; 'add': 0.35; 'version': 0.36; 'url:org': 0.36; 'implement': 0.38; 'remote': 0.38; 'message- id:@gmail.com': 0.38; 'to:addr:python-list': 0.38; 'issue': 0.38; 'recent': 0.39; 'to:addr:python.org': 0.39; 'most': 0.60; 'new': 0.61; 'times': 0.62; '100': 0.79; '1.6': 0.84; '2.7.': 0.84; 'features:': 0.84; 'standing': 0.84; 'instrument': 0.93 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding; bh=FXm30KCHbZGspXsKER91IYaFp0XyvkOiVHzTwgrYKz4=; b=y4RgGVR66IRlm2TUNQ8veXZ9gzRSbvw7FfrpzVCdEG/lFCuD2vjPJufbbIAywmOvJb sibu6AQFF6X3IFpt9FWQ8XQZC22tgkxpnVd3wOkM43v0mWmrZy8d1i26nZjKy6zKRsiA sm2dmWSHJSxiscJgRJDqn+9OAy5c0mQRl/glcEDPhOYwm4/1hoWdOxr1fW/fnuVirl1o Ag4zmAdCSkHgASPTgtcdp8aM2fxa9f7TpwtApr8cMBhsCFqVigG0WOMAHzZYy1oP0W0C gSZB79lCNg9ZVOOHJ+lgIrdQ9iiH4PVG1ICAH4ibLkTHn2ExcRcAtk3QFpuLMoC4qtAi wtYQ== X-Received: by 10.15.83.68 with SMTP id b44mr47530656eez.11.1400506580963; Mon, 19 May 2014 06:36:20 -0700 (PDT) Date: Mon, 19 May 2014 15:36:16 +0200 From: Xavier de Gaye User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: python-list@python.org Subject: ANN: pdb-clone 1.6 - a fast clone of pdb with the remote debugging and attach features Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Mailman-Approved-At: Mon, 19 May 2014 17:06:39 +0200 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 19 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1400512000 news.xs4all.nl 2915 [2001:888:2000:d::a6]:45560 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:71761 pdb-clone 1.6 has been released at Pypi: https://pypi.python.org/pypi/pdb-clone Features: * Improve significantly pdb performance. With breakpoints, pdb-clone runs just above the speed of the interpreter while pdb runs at 10 to 100 times the speed of the interpreter. * Instrument the code with a `set_trace_remote()` hard-coded breakpoint and run the `pdb-attach` script from another terminal to start a remote debugging session. Or, when the code has not been instrumented, run `pdb-attach` with the `--pid` option to start the remote debugging session at any time and attach to the process main thread. * Fix pdb long standing bugs entered in the python issue tracker. * Add a bdb comprehensive test suite (more than 70 tests) and run both the Python pdb and pdb-clone bdb test suites. * Three versions of pdb-clone are supported: * The _py3_ version of pdb-clone runs on python3 from python 3.2 onward. * The _py2.7_ vesion runs on python 2.7. * The _py2.4_ version runs on all python versions from 2.4 to 2.7 included. The pdb command line interface remains unchanged except for the new `detach` pdb command. All the versions of pdb-clone implement the most recent python3 features of pdb.