[pypy-commit] pypy py3k: merge

2016-10-05 Thread cfbolz
Author: Carl Friedrich Bolz Branch: py3k Changeset: r87587:24d05575caeb Date: 2016-10-05 10:42 +0200 http://bitbucket.org/pypy/pypy/changeset/24d05575caeb/ Log:merge diff --git a/pypy/module/cpyext/test/foo.c b/pypy/module/cpyext/test/foo.c --- a/pypy/module/cpyext/test/foo.c +++ b/pypy/modu

[pypy-commit] pypy py3k: merge default

2016-10-05 Thread cfbolz
Author: Carl Friedrich Bolz Branch: py3k Changeset: r87586:c0c28e08bb1c Date: 2016-10-04 17:53 +0200 http://bitbucket.org/pypy/pypy/changeset/c0c28e08bb1c/ Log:merge default (the methodcall stuff needed a slightly different approach than on default) diff --git a/pypy/doc/wha

[pypy-commit] pypy py3k: merge

2016-10-05 Thread cfbolz
Author: Carl Friedrich Bolz Branch: py3k Changeset: r87588:c7b40fdc5deb Date: 2016-10-05 10:43 +0200 http://bitbucket.org/pypy/pypy/changeset/c7b40fdc5deb/ Log:merge diff too long, truncating to 2000 out of 4446 lines diff --git a/pypy/module/cpyext/include/methodobject.h b/pypy/module/cpy

[pypy-commit] pypy default: Windows fixes around vmprof

2016-10-05 Thread arigo
Author: Armin Rigo Branch: Changeset: r87589:93f59ce19b35 Date: 2016-10-05 16:28 +0200 http://bitbucket.org/pypy/pypy/changeset/93f59ce19b35/ Log:Windows fixes around vmprof diff --git a/pypy/config/pypyoption.py b/pypy/config/pypyoption.py --- a/pypy/config/pypyoption.py +++ b/pypy/config/

[pypy-commit] pypy py3k: restore the multiply operation in the switched nb_multiply

2016-10-05 Thread plan_rich
Author: Richard Plangger Branch: py3k Changeset: r87590:5f31b9581615 Date: 2016-10-04 17:18 +0200 http://bitbucket.org/pypy/pypy/changeset/5f31b9581615/ Log:restore the multiply operation in the switched nb_multiply diff --git a/pypy/module/cpyext/test/array.c b/pypy/module/cpyext/test/array

[pypy-commit] pypy py3k: kill Py_TPFLAGS_HAVE_NEWBUFFER

2016-10-05 Thread rlamy
Author: Ronan Lamy Branch: py3k Changeset: r87591:70a25a78e603 Date: 2016-10-05 16:23 +0100 http://bitbucket.org/pypy/pypy/changeset/70a25a78e603/ Log:kill Py_TPFLAGS_HAVE_NEWBUFFER diff --git a/pypy/module/cpyext/api.py b/pypy/module/cpyext/api.py --- a/pypy/module/cpyext/api.py +++ b/pypy/

[pypy-commit] pypy default: - change timeit to report the average +- stdandard deviation

2016-10-05 Thread cfbolz
Author: Carl Friedrich Bolz Branch: Changeset: r87592:fb6bb835369e Date: 2016-10-05 17:31 +0200 http://bitbucket.org/pypy/pypy/changeset/fb6bb835369e/ Log:- change timeit to report the average +- stdandard deviation - print a warning and point to the perf module. - increase d

[pypy-commit] pypy default: document timeit changes

2016-10-05 Thread cfbolz
Author: Carl Friedrich Bolz Branch: Changeset: r87593:59d8a1c6f231 Date: 2016-10-05 17:41 +0200 http://bitbucket.org/pypy/pypy/changeset/59d8a1c6f231/ Log:document timeit changes diff --git a/pypy/doc/cpython_differences.rst b/pypy/doc/cpython_differences.rst --- a/pypy/doc/cpython_differen

[pypy-commit] pypy py3k: Update test for py3 change to memoryview API

2016-10-05 Thread rlamy
Author: Ronan Lamy Branch: py3k Changeset: r87594:3ee8baaa3b8e Date: 2016-10-05 16:44 +0100 http://bitbucket.org/pypy/pypy/changeset/3ee8baaa3b8e/ Log:Update test for py3 change to memoryview API diff --git a/pypy/module/cpyext/test/test_memoryobject.py b/pypy/module/cpyext/test/test_memory

[pypy-commit] pypy py3k: skip a test checking a peephole optimization simplifying constant string subscripts

2016-10-05 Thread plan_rich
Author: Richard Plangger Branch: py3k Changeset: r87595:36a6a63d2306 Date: 2016-10-05 18:00 +0200 http://bitbucket.org/pypy/pypy/changeset/36a6a63d2306/ Log:skip a test checking a peephole optimization simplifying constant string subscripts diff --git a/lib-python/3/test/test_peephol

[pypy-commit] pypy default: Don't use sprintf() from inside a signal handler

2016-10-05 Thread arigo
Author: Armin Rigo Branch: Changeset: r87596:6b566100b56f Date: 2016-10-05 18:01 +0200 http://bitbucket.org/pypy/pypy/changeset/6b566100b56f/ Log:Don't use sprintf() from inside a signal handler diff --git a/pypy/module/faulthandler/cintf.py b/pypy/module/faulthandler/cintf.py --- a/pypy/m

[pypy-commit] pypy py3k: fix test to pass on CPython

2016-10-05 Thread rlamy
Author: Ronan Lamy Branch: py3k Changeset: r87597:907be97a82d0 Date: 2016-10-05 17:02 +0100 http://bitbucket.org/pypy/pypy/changeset/907be97a82d0/ Log:fix test to pass on CPython diff --git a/pypy/module/cpyext/test/test_memoryobject.py b/pypy/module/cpyext/test/test_memoryobject.py --- a/p

[pypy-commit] pypy py3k: merge heads

2016-10-05 Thread rlamy
Author: Ronan Lamy Branch: py3k Changeset: r87598:fa2f1b9c84f4 Date: 2016-10-05 17:04 +0100 http://bitbucket.org/pypy/pypy/changeset/fa2f1b9c84f4/ Log:merge heads diff --git a/pypy/module/cpyext/test/test_memoryobject.py b/pypy/module/cpyext/test/test_memoryobject.py --- a/pypy/module/cpyex

[pypy-commit] pypy py3k: Kill slots nb_oct and nb_hex

2016-10-05 Thread rlamy
Author: Ronan Lamy Branch: py3k Changeset: r87599:53e405a290a2 Date: 2016-10-05 17:12 +0100 http://bitbucket.org/pypy/pypy/changeset/53e405a290a2/ Log:Kill slots nb_oct and nb_hex diff --git a/pypy/module/cpyext/include/object.h b/pypy/module/cpyext/include/object.h --- a/pypy/module/cpyext

[pypy-commit] pypy default: Reimplement debug_collect() for -A

2016-10-05 Thread rlamy
Author: Ronan Lamy Branch: Changeset: r87600:ef455a2a5660 Date: 2016-10-05 18:31 +0100 http://bitbucket.org/pypy/pypy/changeset/ef455a2a5660/ Log:Reimplement debug_collect() for -A diff --git a/pypy/module/cpyext/test/test_cpyext.py b/pypy/module/cpyext/test/test_cpyext.py --- a/pypy/modul

[pypy-commit] pypy py3k: hg merge default

2016-10-05 Thread rlamy
Author: Ronan Lamy Branch: py3k Changeset: r87601:943171b0ad54 Date: 2016-10-05 18:38 +0100 http://bitbucket.org/pypy/pypy/changeset/943171b0ad54/ Log:hg merge default diff --git a/lib-python/2.7/test/test_timeit.py b/lib-python/2.7/test/test_timeit.py --- a/lib-python/2.7/test/test_timeit.

[pypy-commit] pypy py3k: PyFloat_FromString lost its deprecated, unused second argument in py3

2016-10-05 Thread rlamy
Author: Ronan Lamy Branch: py3k Changeset: r87602:00a741fad1f5 Date: 2016-10-05 18:51 +0100 http://bitbucket.org/pypy/pypy/changeset/00a741fad1f5/ Log:PyFloat_FromString lost its deprecated, unused second argument in py3 diff --git a/pypy/module/cpyext/floatobject.py b/pypy/module/c

[pypy-commit] pypy py3k: 'Fix' test_merge_compiler_flags() to pass on CPython (and fail on pypy3)

2016-10-05 Thread rlamy
Author: Ronan Lamy Branch: py3k Changeset: r87603:3ab16226e73d Date: 2016-10-05 20:29 +0100 http://bitbucket.org/pypy/pypy/changeset/3ab16226e73d/ Log:'Fix' test_merge_compiler_flags() to pass on CPython (and fail on pypy3) diff --git a/pypy/module/cpyext/test/test_eval.py b/pypy/mo

[pypy-commit] pypy buffer-interface2: reset warnings filter after test

2016-10-05 Thread mattip
Author: Matti Picus Branch: buffer-interface2 Changeset: r87604:4fa1602ac181 Date: 2016-10-05 22:41 +0300 http://bitbucket.org/pypy/pypy/changeset/4fa1602ac181/ Log:reset warnings filter after test diff --git a/pypy/module/cpyext/test/test_memoryobject.py b/pypy/module/cpyext/test/test_memo

[pypy-commit] pypy buffer-interface2: fix for failing test which hit NotImplemented wrapper function

2016-10-05 Thread mattip
Author: Matti Picus Branch: buffer-interface2 Changeset: r87605:f0b37baed36a Date: 2016-10-05 22:45 +0300 http://bitbucket.org/pypy/pypy/changeset/f0b37baed36a/ Log:fix for failing test which hit NotImplemented wrapper function diff --git a/pypy/module/cpyext/memoryobject.py b/pypy/module/c

[pypy-commit] pypy py3k: Nonsense occurs in SyntaxErrors with continuation lines (ending in '\').

2016-10-05 Thread arigo
Author: Armin Rigo Branch: py3k Changeset: r87606:423e1e4247ea Date: 2016-10-05 22:49 +0200 http://bitbucket.org/pypy/pypy/changeset/423e1e4247ea/ Log:Nonsense occurs in SyntaxErrors with continuation lines (ending in '\'). At least for now avoid crashes (test_codeop.py, which fails

[pypy-commit] pypy py3k: Partial fix for Py_GetProgramName() not returning wchar_t*

2016-10-05 Thread rlamy
Author: Ronan Lamy Branch: py3k Changeset: r87607:a6f5e346aab3 Date: 2016-10-06 04:14 +0100 http://bitbucket.org/pypy/pypy/changeset/a6f5e346aab3/ Log:Partial fix for Py_GetProgramName() not returning wchar_t* diff --git a/pypy/module/cpyext/pythonrun.py b/pypy/module/cpyext/pythonrun.py ---

[pypy-commit] pypy py3k: Use latin-1: mojibake is better than crashing, here

2016-10-05 Thread rlamy
Author: Ronan Lamy Branch: py3k Changeset: r87608:b584712b82e0 Date: 2016-10-06 04:20 +0100 http://bitbucket.org/pypy/pypy/changeset/b584712b82e0/ Log:Use latin-1: mojibake is better than crashing, here diff --git a/pypy/module/cpyext/state.py b/pypy/module/cpyext/state.py --- a/pypy/module/

[pypy-commit] pypy py3k: Add failing test for unimplemented feature in PyUnicode_FromWideChar()

2016-10-05 Thread rlamy
Author: Ronan Lamy Branch: py3k Changeset: r87609:5de7b4b97344 Date: 2016-10-06 04:21 +0100 http://bitbucket.org/pypy/pypy/changeset/5de7b4b97344/ Log:Add failing test for unimplemented feature in PyUnicode_FromWideChar() diff --git a/pypy/module/cpyext/test/test_unicodeobject.py b/

[pypy-commit] pypy buffer-interface2: test, fix for translation - buf will always be a rlib.buffer Buffer

2016-10-05 Thread mattip
Author: Matti Picus Branch: buffer-interface2 Changeset: r87610:4921d1e337bf Date: 2016-10-06 07:38 +0300 http://bitbucket.org/pypy/pypy/changeset/4921d1e337bf/ Log:test, fix for translation - buf will always be a rlib.buffer Buffer diff --git a/pypy/module/cpyext/slotdefs.py b/pypy/module/c