[pypy-commit] extradoc extradoc: Talk

2016-10-03 Thread arigo
Author: Armin Rigo Branch: extradoc Changeset: r5725:7def2adddcfe Date: 2016-10-03 09:26 +0200 http://bitbucket.org/pypy/extradoc/changeset/7def2adddcfe/ Log:Talk diff --git a/talk/pyconza2016/revdb/Makefile b/talk/pyconza2016/revdb/Makefile new file mode 100644 --- /dev/null +++ b/talk/pyco

[pypy-commit] extradoc extradoc: Some extra slides

2016-10-03 Thread arigo
Author: Armin Rigo Branch: extradoc Changeset: r5726:883f2ca7a592 Date: 2016-10-03 09:44 +0200 http://bitbucket.org/pypy/extradoc/changeset/883f2ca7a592/ Log:Some extra slides diff --git a/talk/pyconza2016/revdb/talk.rst b/talk/pyconza2016/revdb/talk.rst --- a/talk/pyconza2016/revdb/talk.rst

[pypy-commit] extradoc extradoc: tweak

2016-10-03 Thread arigo
Author: Armin Rigo Branch: extradoc Changeset: r5727:bddb6e89906c Date: 2016-10-03 11:08 +0200 http://bitbucket.org/pypy/extradoc/changeset/bddb6e89906c/ Log:tweak diff --git a/talk/pyconza2016/revdb/talk.rst b/talk/pyconza2016/revdb/talk.rst --- a/talk/pyconza2016/revdb/talk.rst +++ b/talk/

[pypy-commit] extradoc extradoc: Tweaks

2016-10-03 Thread arigo
Author: Armin Rigo Branch: extradoc Changeset: r5728:f0c97d5789c4 Date: 2016-10-03 17:25 +0200 http://bitbucket.org/pypy/extradoc/changeset/f0c97d5789c4/ Log:Tweaks diff --git a/talk/pyconza2016/revdb/author.latex b/talk/pyconza2016/revdb/author.latex --- a/talk/pyconza2016/revdb/author.lat

[pypy-commit] pypy default: I *think* that HAS_CODEMAP should work on 32-bit x86 too. It makes test_traceback pass, at least.

2016-10-03 Thread arigo
Author: Armin Rigo Branch: Changeset: r87541:9764cd5ae712 Date: 2016-10-03 15:01 +0200 http://bitbucket.org/pypy/pypy/changeset/9764cd5ae712/ Log:I *think* that HAS_CODEMAP should work on 32-bit x86 too. It makes test_traceback pass, at least. diff --git a/rpython/jit/backend/x86/ru

[pypy-commit] pypy py3k-test-cpyext: Get compile_module() and load_module() to work with -A

2016-10-03 Thread rlamy
Author: Ronan Lamy Branch: py3k-test-cpyext Changeset: r87540:31444e6bee00 Date: 2016-10-03 16:46 +0100 http://bitbucket.org/pypy/pypy/changeset/31444e6bee00/ Log:Get compile_module() and load_module() to work with -A diff --git a/pypy/module/cpyext/test/test_cpyext.py b/pypy/module/cpyext/

[pypy-commit] pypy test-cpyext: backport 243ced1b2519: run import_module() at app-level on -A

2016-10-03 Thread rlamy
Author: Ronan Lamy Branch: test-cpyext Changeset: r87542:d4878e17d7d3 Date: 2016-10-02 01:06 +0100 http://bitbucket.org/pypy/pypy/changeset/d4878e17d7d3/ Log:backport 243ced1b2519: run import_module() at app-level on -A diff --git a/pypy/module/cpyext/test/conftest.py b/pypy/module/cpyext/t

[pypy-commit] pypy test-cpyext: Don't import rpython.tool.udir from pypy.tool.cpyext.extbuild, since it's not py3-compatible

2016-10-03 Thread rlamy
Author: Ronan Lamy Branch: test-cpyext Changeset: r87543:c420b3504e6e Date: 2016-10-02 03:04 +0100 http://bitbucket.org/pypy/pypy/changeset/c420b3504e6e/ Log:Don't import rpython.tool.udir from pypy.tool.cpyext.extbuild, since it's not py3-compatible (grafted from 4e5503abe3ab

[pypy-commit] pypy test-cpyext: Get import_extension() to work on -A

2016-10-03 Thread rlamy
Author: Ronan Lamy Branch: test-cpyext Changeset: r87544:ea8a4682f5fe Date: 2016-10-02 03:55 +0100 http://bitbucket.org/pypy/pypy/changeset/ea8a4682f5fe/ Log:Get import_extension() to work on -A (grafted from 14eb3647cc89644282cae04969c5f44628c6c7cb) diff --git a/pypy/module/cpyext/t

[pypy-commit] pypy test-cpyext: Fix signature of -A import_extension()

2016-10-03 Thread rlamy
Author: Ronan Lamy Branch: test-cpyext Changeset: r87546:59c415d5295c Date: 2016-10-03 18:10 +0100 http://bitbucket.org/pypy/pypy/changeset/59c415d5295c/ Log:Fix signature of -A import_extension() diff --git a/pypy/module/cpyext/test/test_cpyext.py b/pypy/module/cpyext/test/test_cpyext.py -

[pypy-commit] pypy test-cpyext: Get compile_module() and load_module() to work with -A

2016-10-03 Thread rlamy
Author: Ronan Lamy Branch: test-cpyext Changeset: r87545:701dc49dce63 Date: 2016-10-03 16:46 +0100 http://bitbucket.org/pypy/pypy/changeset/701dc49dce63/ Log:Get compile_module() and load_module() to work with -A (grafted from 31444e6bee0068ed27f834f5cbcf5a501779fa82) diff --git a/py

[pypy-commit] pypy test-cpyext: Document a bit (and commit missing __init__.py)

2016-10-03 Thread rlamy
Author: Ronan Lamy Branch: test-cpyext Changeset: r87547:44a7adf643a1 Date: 2016-10-03 18:39 +0100 http://bitbucket.org/pypy/pypy/changeset/44a7adf643a1/ Log:Document a bit (and commit missing __init__.py) diff --git a/pypy/tool/cpyext/__init__.py b/pypy/tool/cpyext/__init__.py new file mode

[pypy-commit] pypy better-error-missing-self: make sure to not produce the error in the module.function(...) case with the

2016-10-03 Thread cfbolz
Author: Carl Friedrich Bolz Branch: better-error-missing-self Changeset: r87549:6ef9080035c4 Date: 2016-10-03 19:54 +0200 http://bitbucket.org/pypy/pypy/changeset/6ef9080035c4/ Log:make sure to not produce the error in the module.function(...) case with the wrong argument number diff

[pypy-commit] pypy better-error-missing-self: improve the error message when the programmer forgets the "self" parameter of a

2016-10-03 Thread cfbolz
Author: Carl Friedrich Bolz Branch: better-error-missing-self Changeset: r87548:e664458f25d0 Date: 2016-10-03 19:04 +0200 http://bitbucket.org/pypy/pypy/changeset/e664458f25d0/ Log:improve the error message when the programmer forgets the "self" parameter of a method. (in pro

[pypy-commit] pypy test-cpyext: Make build dir name generation a bit more robust

2016-10-03 Thread rlamy
Author: Ronan Lamy Branch: test-cpyext Changeset: r87550:4b85f84476b2 Date: 2016-10-03 19:57 +0100 http://bitbucket.org/pypy/pypy/changeset/4b85f84476b2/ Log:Make build dir name generation a bit more robust diff --git a/pypy/tool/cpyext/extbuild.py b/pypy/tool/cpyext/extbuild.py --- a/pypy/t

[pypy-commit] pypy py3k-test-cpyext: hg merge test-cpyext

2016-10-03 Thread rlamy
Author: Ronan Lamy Branch: py3k-test-cpyext Changeset: r87551:f07101bd8ca8 Date: 2016-10-03 20:00 +0100 http://bitbucket.org/pypy/pypy/changeset/f07101bd8ca8/ Log:hg merge test-cpyext diff --git a/pypy/module/cpyext/test/conftest.py b/pypy/module/cpyext/test/conftest.py --- a/pypy/module/cp

[pypy-commit] pypy test-cpyext: Close branch test-cpyext

2016-10-03 Thread rlamy
Author: Ronan Lamy Branch: test-cpyext Changeset: r87553:cdec2431d792 Date: 2016-10-03 20:19 +0100 http://bitbucket.org/pypy/pypy/changeset/cdec2431d792/ Log:Close branch test-cpyext ___ pypy-commit mailing list [email protected] https://mail.

[pypy-commit] pypy default: Merged test-cpyext into default

2016-10-03 Thread rlamy
Author: Ronan Lamy Branch: Changeset: r87554:8de035d7451d Date: 2016-10-03 20:19 +0100 http://bitbucket.org/pypy/pypy/changeset/8de035d7451d/ Log:Merged test-cpyext into default diff --git a/pypy/module/cpyext/test/conftest.py b/pypy/module/cpyext/test/conftest.py --- a/pypy/module/cpyext/

[pypy-commit] pypy py3k: Merged py3k-test-cpyext into py3k

2016-10-03 Thread rlamy
Author: Ronan Lamy Branch: py3k Changeset: r87557:fd250a74696a Date: 2016-10-03 20:22 +0100 http://bitbucket.org/pypy/pypy/changeset/fd250a74696a/ Log:Merged py3k-test-cpyext into py3k diff --git a/pypy/module/cpyext/test/array.c b/pypy/module/cpyext/test/array.c --- a/pypy/module/cpyext/tes

[pypy-commit] pypy py3k-test-cpyext: hg merge py3k

2016-10-03 Thread rlamy
Author: Ronan Lamy Branch: py3k-test-cpyext Changeset: r87555:295f0e0f53a0 Date: 2016-10-03 20:21 +0100 http://bitbucket.org/pypy/pypy/changeset/295f0e0f53a0/ Log:hg merge py3k diff too long, truncating to 2000 out of 2395 lines diff --git a/pypy/config/pypyoption.py b/pypy/config/pypyoptio

[pypy-commit] pypy py3k-test-cpyext: Close branch py3k-test-cpyext

2016-10-03 Thread rlamy
Author: Ronan Lamy Branch: py3k-test-cpyext Changeset: r87556:394506ab31e6 Date: 2016-10-03 20:22 +0100 http://bitbucket.org/pypy/pypy/changeset/394506ab31e6/ Log:Close branch py3k-test-cpyext ___ pypy-commit mailing list [email protected] htt

[pypy-commit] pypy py3k: hg merge default

2016-10-03 Thread rlamy
Author: Ronan Lamy Branch: py3k Changeset: r87558:41c743345092 Date: 2016-10-03 20:24 +0100 http://bitbucket.org/pypy/pypy/changeset/41c743345092/ Log:hg merge default diff --git a/rpython/jit/backend/x86/runner.py b/rpython/jit/backend/x86/runner.py --- a/rpython/jit/backend/x86/runner.py

[pypy-commit] pypy py3k: Kill Py_TPFLAGS_CHECKTYPES: it doesn't exist on CPython3

2016-10-03 Thread rlamy
Author: Ronan Lamy Branch: py3k Changeset: r87559:87803e83eb25 Date: 2016-10-03 20:43 +0100 http://bitbucket.org/pypy/pypy/changeset/87803e83eb25/ Log:Kill Py_TPFLAGS_CHECKTYPES: it doesn't exist on CPython3 diff --git a/pypy/module/cpyext/api.py b/pypy/module/cpyext/api.py --- a/pypy/module

[pypy-commit] pypy better-error-missing-self: in the simplest cases, produce the error message also for bound methods

2016-10-03 Thread cfbolz
Author: Carl Friedrich Bolz Branch: better-error-missing-self Changeset: r87560:fd909a45fb0b Date: 2016-10-04 08:42 +0200 http://bitbucket.org/pypy/pypy/changeset/fd909a45fb0b/ Log:in the simplest cases, produce the error message also for bound methods diff --git a/pypy/interpreter/b

[pypy-commit] pypy better-error-missing-self: fix test_pypy_c

2016-10-03 Thread cfbolz
Author: Carl Friedrich Bolz Branch: better-error-missing-self Changeset: r87563:298f8c57213d Date: 2016-10-04 08:58 +0200 http://bitbucket.org/pypy/pypy/changeset/298f8c57213d/ Log:fix test_pypy_c diff --git a/pypy/module/pypyjit/test_pypy_c/test_call.py b/pypy/module/pypyjit/test_pypy_c/te

[pypy-commit] pypy better-error-missing-self: merge default

2016-10-03 Thread cfbolz
Author: Carl Friedrich Bolz Branch: better-error-missing-self Changeset: r87561:19f52dd10c67 Date: 2016-10-04 08:52 +0200 http://bitbucket.org/pypy/pypy/changeset/19f52dd10c67/ Log:merge default diff too long, truncating to 2000 out of 3429 lines diff --git a/Makefile b/Makefile --- a/Makef

[pypy-commit] pypy better-error-missing-self: skip these as appdirect tests

2016-10-03 Thread cfbolz
Author: Carl Friedrich Bolz Branch: better-error-missing-self Changeset: r87562:dee3f0dd4c1e Date: 2016-10-04 08:55 +0200 http://bitbucket.org/pypy/pypy/changeset/dee3f0dd4c1e/ Log:skip these as appdirect tests diff --git a/pypy/interpreter/test/test_argument.py b/pypy/interpreter/test/test