[pypy-commit] pypy default: For now, we can't specify both ``-O1`` and ``--platform=arm``: the first

2016-08-12 Thread arigo
Author: Armin Rigo Branch: Changeset: r86182:31c39adab9d0 Date: 2016-08-13 08:24 +0200 http://bitbucket.org/pypy/pypy/changeset/31c39adab9d0/ Log:For now, we can't specify both ``-O1`` and ``--platform=arm``: the first option picks ``--gc=boehm`` and the second option picks `

[pypy-commit] pypy reverse-debugger: Print something here

2016-08-12 Thread arigo
Author: Armin Rigo Branch: reverse-debugger Changeset: r86181:c431addcce4e Date: 2016-08-12 22:53 +0200 http://bitbucket.org/pypy/pypy/changeset/c431addcce4e/ Log:Print something here diff --git a/rpython/translator/revdb/interact.py b/rpython/translator/revdb/interact.py --- a/rpython/tran

[pypy-commit] pypy reverse-debugger: Trying to support pressing Ctrl-C to interrupt the current operation

2016-08-12 Thread arigo
Author: Armin Rigo Branch: reverse-debugger Changeset: r86180:2311c3b8a675 Date: 2016-08-12 22:44 +0200 http://bitbucket.org/pypy/pypy/changeset/2311c3b8a675/ Log:Trying to support pressing Ctrl-C to interrupt the current operation diff --git a/rpython/translator/revdb/interact.py b/rpython

[pypy-commit] pypy reverse-debugger: Install a minimal __import__ hook to use interactively. At least this

2016-08-12 Thread arigo
Author: Armin Rigo Branch: reverse-debugger Changeset: r86179:423804b65c4c Date: 2016-08-12 21:27 +0200 http://bitbucket.org/pypy/pypy/changeset/423804b65c4c/ Log:Install a minimal __import__ hook to use interactively. At least this version doesn't try to look for a file in the curren

[pypy-commit] pypy default: Test and probable fix (thanks sbauman)

2016-08-12 Thread arigo
Author: Armin Rigo Branch: Changeset: r86178:cd39a869a312 Date: 2016-08-12 20:59 +0200 http://bitbucket.org/pypy/pypy/changeset/cd39a869a312/ Log:Test and probable fix (thanks sbauman) diff --git a/rpython/rlib/rweakref.py b/rpython/rlib/rweakref.py --- a/rpython/rlib/rweakref.py +++ b/rpyt

[pypy-commit] pypy py3k: Fix bad change in b053ff5c2d6d

2016-08-12 Thread rlamy
Author: Ronan Lamy Branch: py3k Changeset: r86177:3a81057901f3 Date: 2016-08-12 18:48 +0100 http://bitbucket.org/pypy/pypy/changeset/3a81057901f3/ Log:Fix bad change in b053ff5c2d6d diff --git a/pypy/objspace/std/typeobject.py b/pypy/objspace/std/typeobject.py --- a/pypy/objspace/std/typeobj

[pypy-commit] pypy py3k: Fix translation

2016-08-12 Thread rlamy
Author: Ronan Lamy Branch: py3k Changeset: r86176:b1def8b63787 Date: 2016-08-12 17:58 +0100 http://bitbucket.org/pypy/pypy/changeset/b1def8b63787/ Log:Fix translation diff --git a/pypy/module/_cffi_backend/ctypeptr.py b/pypy/module/_cffi_backend/ctypeptr.py --- a/pypy/module/_cffi_backend/c

[pypy-commit] pypy reverse-debugger: Next emulation (we'll see how far it makes sense to continue)

2016-08-12 Thread arigo
Author: Armin Rigo Branch: reverse-debugger Changeset: r86175:9dbb62851b3f Date: 2016-08-12 18:52 +0200 http://bitbucket.org/pypy/pypy/changeset/9dbb62851b3f/ Log:Next emulation (we'll see how far it makes sense to continue) diff --git a/rpython/rlib/revdb.py b/rpython/rlib/revdb.py --- a/rp

[pypy-commit] pypy py3k: Remove code added by py2-specific branch 'resource_warning'

2016-08-12 Thread rlamy
Author: Ronan Lamy Branch: py3k Changeset: r86174:b00718188b59 Date: 2016-08-12 17:35 +0100 http://bitbucket.org/pypy/pypy/changeset/b00718188b59/ Log:Remove code added by py2-specific branch 'resource_warning' diff --git a/pypy/interpreter/baseobjspace.py b/pypy/interpreter/baseobjspace.py

[pypy-commit] pypy py3.5: Fix BUILD_SET_UNPACK by changing iterator to iter instead of itervalues as w_item should never be a dict anyway

2016-08-12 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5 Changeset: r86173:f658ed1189a5 Date: 2016-08-12 17:57 +0200 http://bitbucket.org/pypy/pypy/changeset/f658ed1189a5/ Log:Fix BUILD_SET_UNPACK by changing iterator to iter instead of itervalues as w_item should never be a dict anyway diff --git a/pyp

[pypy-commit] pypy py3.5: hg merge py3k

2016-08-12 Thread mjacob
Author: Manuel Jacob Branch: py3.5 Changeset: r86172:d1ba25403058 Date: 2016-08-12 17:48 +0200 http://bitbucket.org/pypy/pypy/changeset/d1ba25403058/ Log:hg merge py3k diff too long, truncating to 2000 out of 4110 lines diff --git a/include/PyPy.h b/include/PyPy.h --- a/include/PyPy.h +++ b

[pypy-commit] pypy refactor_rmmap: Close branch.

2016-08-12 Thread vext01
Author: Edd Barrett Branch: refactor_rmmap Changeset: r86171:9f7d18f5d82f Date: 2016-08-12 15:12 +0100 http://bitbucket.org/pypy/pypy/changeset/9f7d18f5d82f/ Log:Close branch. ___ pypy-commit mailing list pypy-commit@python.org https://mail.python.

[pypy-commit] pypy reverse-debugger: Emulate modf. Fix emulation of dtoa(2.0) to output the ".0" too.

2016-08-12 Thread arigo
Author: Armin Rigo Branch: reverse-debugger Changeset: r86170:44f0653642eb Date: 2016-08-12 15:00 +0200 http://bitbucket.org/pypy/pypy/changeset/44f0653642eb/ Log:Emulate modf. Fix emulation of dtoa(2.0) to output the ".0" too. diff --git a/rpython/rlib/revdb.py b/rpython/rlib/revdb.py --- a

[pypy-commit] pypy refactor_rmmap: Refactor rmmap.py JIT support into its own file.

2016-08-12 Thread vext01
Author: Edd Barrett Branch: refactor_rmmap Changeset: r86169:a80e988edfd0 Date: 2016-08-12 11:26 +0100 http://bitbucket.org/pypy/pypy/changeset/a80e988edfd0/ Log:Refactor rmmap.py JIT support into its own file. And test with a W^X patch to the build system. diff --git a/rpython/jit/

[pypy-commit] pypy reverse-debugger: translation fix

2016-08-12 Thread arigo
Author: Armin Rigo Branch: reverse-debugger Changeset: r86168:bec055ffd7c0 Date: 2016-08-12 11:53 +0200 http://bitbucket.org/pypy/pypy/changeset/bec055ffd7c0/ Log:translation fix diff --git a/rpython/rlib/revdb.py b/rpython/rlib/revdb.py --- a/rpython/rlib/revdb.py +++ b/rpython/rlib/revdb.p

[pypy-commit] pypy reverse-debugger: When entering debugger commands, make floating-point results

2016-08-12 Thread arigo
Author: Armin Rigo Branch: reverse-debugger Changeset: r86167:c46e5f55f170 Date: 2016-08-12 11:34 +0200 http://bitbucket.org/pypy/pypy/changeset/c46e5f55f170/ Log:When entering debugger commands, make floating-point results approximately work diff --git a/rpython/rlib/rdtoa.py b/rpyt

[pypy-commit] pypy reverse-debugger: Update printed text

2016-08-12 Thread arigo
Author: Armin Rigo Branch: reverse-debugger Changeset: r86166:4a605deff6e0 Date: 2016-08-12 11:02 +0200 http://bitbucket.org/pypy/pypy/changeset/4a605deff6e0/ Log:Update printed text diff --git a/rpython/translator/revdb/src-revdb/revdb.c b/rpython/translator/revdb/src-revdb/revdb.c --- a/r

[pypy-commit] pypy reverse-debugger: Fix

2016-08-12 Thread arigo
Author: Armin Rigo Branch: reverse-debugger Changeset: r86165:ff0f492637a5 Date: 2016-08-12 10:36 +0200 http://bitbucket.org/pypy/pypy/changeset/ff0f492637a5/ Log:Fix diff --git a/rpython/translator/revdb/process.py b/rpython/translator/revdb/process.py --- a/rpython/translator/revdb/proces

[pypy-commit] pypy reverse-debugger: Some tests for prints, including printing $0

2016-08-12 Thread arigo
Author: Armin Rigo Branch: reverse-debugger Changeset: r86163:d7c4d2ccc68a Date: 2016-08-12 10:20 +0200 http://bitbucket.org/pypy/pypy/changeset/d7c4d2ccc68a/ Log:Some tests for prints, including printing $0 diff --git a/pypy/interpreter/reverse_debugging.py b/pypy/interpreter/reverse_debug

[pypy-commit] pypy reverse-debugger: Failing test about setting up a watchpoint: it doesn't force the object

2016-08-12 Thread arigo
Author: Armin Rigo Branch: reverse-debugger Changeset: r86164:66ba9208c0e9 Date: 2016-08-12 10:28 +0200 http://bitbucket.org/pypy/pypy/changeset/66ba9208c0e9/ Log:Failing test about setting up a watchpoint: it doesn't force the object to be attached diff --git a/rpython/translator/re