[pypy-commit] pypy reverse-debugger: Add --color=dark or --color=light options to ask for colorized source code

2016-07-10 Thread arigo
Author: Armin Rigo Branch: reverse-debugger Changeset: r85645:6d9691593717 Date: 2016-07-10 11:08 +0200 http://bitbucket.org/pypy/pypy/changeset/6d9691593717/ Log:Add --color=dark or --color=light options to ask for colorized source code diff --git a/rpython/translator/revdb/interact

[pypy-commit] pypy reverse-debugger: Print the ImportError at least, don't silently ignore the option

2016-07-10 Thread arigo
Author: Armin Rigo Branch: reverse-debugger Changeset: r85646:c5e982ac074f Date: 2016-07-10 11:12 +0200 http://bitbucket.org/pypy/pypy/changeset/c5e982ac074f/ Log:Print the ImportError at least, don't silently ignore the option diff --git a/rpython/translator/revdb/interact.py b/rpython/tra

[pypy-commit] pypy override-tp_as-methods: refactor code and add a failing test that passes with -A

2016-07-10 Thread mattip
Author: Matti Picus Branch: override-tp_as-methods Changeset: r85647:1ebdd0291415 Date: 2016-07-10 08:30 -0400 http://bitbucket.org/pypy/pypy/changeset/1ebdd0291415/ Log:refactor code and add a failing test that passes with -A diff --git a/pypy/module/cpyext/test/test_typeobject.py b/pypy/m

[pypy-commit] pypy reverse-debugger: Improve the test. Now it correctly fails if we comment out

2016-07-10 Thread arigo
Author: Armin Rigo Branch: reverse-debugger Changeset: r85648:f516429f49f3 Date: 2016-07-10 18:59 +0200 http://bitbucket.org/pypy/pypy/changeset/f516429f49f3/ Log:Improve the test. Now it correctly fails if we comment out "#define HAVE_PERSONALITY". diff --git a/rpython/translator/re

[pypy-commit] pypy py3.5-async: Create missing visit_AsyncFunctionDef with codegenerator for asyncfunctions in codegen (fixes startup errors)

2016-07-10 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5-async Changeset: r85649:0ebb9c362c57 Date: 2016-07-10 20:48 +0200 http://bitbucket.org/pypy/pypy/changeset/0ebb9c362c57/ Log:Create missing visit_AsyncFunctionDef with codegenerator for asyncfunctions in codegen (fixes startup errors) diff --git a