[pypy-commit] pypy default: merge heads

2016-11-10 Thread arigo
Author: Armin Rigo Branch: Changeset: r88286:0b074a6a6472 Date: 2016-11-10 09:46 +0100 http://bitbucket.org/pypy/pypy/changeset/0b074a6a6472/ Log:merge heads diff --git a/rpython/rlib/rarithmetic.py b/rpython/rlib/rarithmetic.py --- a/rpython/rlib/rarithmetic.py +++ b/rpython/rlib/rarithmet

[pypy-commit] pypy default: fix test

2016-11-10 Thread arigo
Author: Armin Rigo Branch: Changeset: r88285:76a9a43a1e8c Date: 2016-11-10 09:45 +0100 http://bitbucket.org/pypy/pypy/changeset/76a9a43a1e8c/ Log:fix test diff --git a/rpython/rlib/rarithmetic.py b/rpython/rlib/rarithmetic.py --- a/rpython/rlib/rarithmetic.py +++ b/rpython/rlib/rarithmetic.

[pypy-commit] pypy py3.5: fix error message

2016-11-10 Thread arigo
Author: Armin Rigo Branch: py3.5 Changeset: r88288:3fff80d67303 Date: 2016-11-10 09:58 +0100 http://bitbucket.org/pypy/pypy/changeset/3fff80d67303/ Log:fix error message diff --git a/pypy/module/array/interp_array.py b/pypy/module/array/interp_array.py --- a/pypy/module/array/interp_array.p

[pypy-commit] pypy py3.5: fix for test

2016-11-10 Thread arigo
Author: Armin Rigo Branch: py3.5 Changeset: r88287:01bd875e7563 Date: 2016-11-10 09:58 +0100 http://bitbucket.org/pypy/pypy/changeset/01bd875e7563/ Log:fix for test diff --git a/pypy/module/math/app_math.py b/pypy/module/math/app_math.py --- a/pypy/module/math/app_math.py +++ b/pypy/module/m

[pypy-commit] pypy py3.5: cmath.isclose()

2016-11-10 Thread arigo
Author: Armin Rigo Branch: py3.5 Changeset: r88289:a7657f5b543d Date: 2016-11-10 10:38 +0100 http://bitbucket.org/pypy/pypy/changeset/a7657f5b543d/ Log:cmath.isclose() diff --git a/pypy/module/cmath/__init__.py b/pypy/module/cmath/__init__.py --- a/pypy/module/cmath/__init__.py +++ b/pypy/mo

[pypy-commit] pypy py3.5: accept AttributeError in this case too

2016-11-10 Thread arigo
Author: Armin Rigo Branch: py3.5 Changeset: r88290:db1c76818220 Date: 2016-11-10 10:48 +0100 http://bitbucket.org/pypy/pypy/changeset/db1c76818220/ Log:accept AttributeError in this case too diff --git a/lib-python/3/test/test_generators.py b/lib-python/3/test/test_generators.py --- a/lib-p

[pypy-commit] pypy py3.5: sys.is_finalizing()

2016-11-10 Thread arigo
Author: Armin Rigo Branch: py3.5 Changeset: r88291:763c24bd5dca Date: 2016-11-10 10:55 +0100 http://bitbucket.org/pypy/pypy/changeset/763c24bd5dca/ Log:sys.is_finalizing() diff --git a/pypy/interpreter/baseobjspace.py b/pypy/interpreter/baseobjspace.py --- a/pypy/interpreter/baseobjspace.py

[pypy-commit] pypy py3.5: Use try-finally in ConnectionHandler to ensure resource cleanup and prevent timeout

2016-11-10 Thread rlamy
Author: Ronan Lamy Branch: py3.5 Changeset: r88292:9d22a6f232ff Date: 2016-11-10 14:59 + http://bitbucket.org/pypy/pypy/changeset/9d22a6f232ff/ Log:Use try-finally in ConnectionHandler to ensure resource cleanup and prevent timeout diff --git a/lib-python/3/test/test_ssl.py b/lib

[pypy-commit] pypy space-newtext: cpyext

2016-11-10 Thread cfbolz
Author: Carl Friedrich Bolz Branch: space-newtext Changeset: r88293:111d8e1779ff Date: 2016-11-09 17:59 +0100 http://bitbucket.org/pypy/pypy/changeset/111d8e1779ff/ Log:cpyext diff --git a/pypy/module/cpyext/bytearrayobject.py b/pypy/module/cpyext/bytearrayobject.py --- a/pypy/module/cpyext

[pypy-commit] pypy py3.5: match CPython3's pbkdf2_hmac behaviour about the password and salt arguments

2016-11-10 Thread cfbolz
Author: Carl Friedrich Bolz Branch: py3.5 Changeset: r88295:38b208bbc61c Date: 2016-11-10 17:40 +0100 http://bitbucket.org/pypy/pypy/changeset/38b208bbc61c/ Log:match CPython3's pbkdf2_hmac behaviour about the password and salt arguments diff --git a/pypy/module/_hashlib/interp_hashl

[pypy-commit] pypy py3.5: add a way to express "bytes" unwrapping via unwrap_spec

2016-11-10 Thread cfbolz
Author: Carl Friedrich Bolz Branch: py3.5 Changeset: r88294:8d2718505c72 Date: 2016-11-10 17:38 +0100 http://bitbucket.org/pypy/pypy/changeset/8d2718505c72/ Log:add a way to express "bytes" unwrapping via unwrap_spec diff --git a/pypy/interpreter/gateway.py b/pypy/interpreter/gateway.py ---

[pypy-commit] pypy py3.5: fix return value too

2016-11-10 Thread cfbolz
Author: Carl Friedrich Bolz Branch: py3.5 Changeset: r88296:0a68df568b22 Date: 2016-11-10 18:01 +0100 http://bitbucket.org/pypy/pypy/changeset/0a68df568b22/ Log:fix return value too diff --git a/pypy/module/_hashlib/interp_hashlib.py b/pypy/module/_hashlib/interp_hashlib.py --- a/pypy/modul

[pypy-commit] pypy space-newtext: _hashlib (also refactor NameFetcher to not need a space)

2016-11-10 Thread cfbolz
Author: Carl Friedrich Bolz Branch: space-newtext Changeset: r88298:425adc283f7d Date: 2016-11-10 18:03 +0100 http://bitbucket.org/pypy/pypy/changeset/425adc283f7d/ Log:_hashlib (also refactor NameFetcher to not need a space) diff --git a/pypy/module/_hashlib/interp_hashlib.py b/pypy/module

[pypy-commit] pypy space-newtext: _hashlib. also refactor the NameFetcher to not need a space at all

2016-11-10 Thread cfbolz
Author: Carl Friedrich Bolz Branch: space-newtext Changeset: r88297:621430499498 Date: 2016-11-10 16:38 +0100 http://bitbucket.org/pypy/pypy/changeset/621430499498/ Log:_hashlib. also refactor the NameFetcher to not need a space at all diff --git a/pypy/module/_hashlib/interp_hashlib.py b/p

[pypy-commit] pypy py3.5: Fix timeouts in test_urllib2_localnet.py and skip tests that now segfault

2016-11-10 Thread rlamy
Author: Ronan Lamy Branch: py3.5 Changeset: r88299:e7411922252b Date: 2016-11-10 17:04 + http://bitbucket.org/pypy/pypy/changeset/e7411922252b/ Log:Fix timeouts in test_urllib2_localnet.py and skip tests that now segfault diff --git a/lib-python/3/ssl.py b/lib-python/3/ssl.py ---

[pypy-commit] pypy py3.5: unused imports

2016-11-10 Thread arigo
Author: Armin Rigo Branch: py3.5 Changeset: r88300:16df122f695c Date: 2016-11-10 13:08 +0100 http://bitbucket.org/pypy/pypy/changeset/16df122f695c/ Log:unused imports diff --git a/pypy/objspace/std/stringmethods.py b/pypy/objspace/std/stringmethods.py --- a/pypy/objspace/std/stringmethods.p

[pypy-commit] pypy py3.5: merge heads

2016-11-10 Thread arigo
Author: Armin Rigo Branch: py3.5 Changeset: r88302:c6e6087f1717 Date: 2016-11-10 19:10 +0100 http://bitbucket.org/pypy/pypy/changeset/c6e6087f1717/ Log:merge heads diff --git a/lib-python/3/ssl.py b/lib-python/3/ssl.py --- a/lib-python/3/ssl.py +++ b/lib-python/3/ssl.py @@ -745,8 +745,7 @@

[pypy-commit] pypy default: THe --pypy option in this test directory has no effect at all.

2016-11-10 Thread arigo
Author: Armin Rigo Branch: Changeset: r88301:2ae7531dd919 Date: 2016-11-10 17:55 +0100 http://bitbucket.org/pypy/pypy/changeset/2ae7531dd919/ Log:THe --pypy option in this test directory has no effect at all. diff --git a/pypy/module/pypyjit/test/conftest.py b/pypy/module/pypyjit/test/conf

[pypy-commit] pypy py3.5: add a failing test about typecode y# (more failing tests in this file anyway)

2016-11-10 Thread cfbolz
Author: Carl Friedrich Bolz Branch: py3.5 Changeset: r88303:e15a627f9333 Date: 2016-11-10 19:50 +0100 http://bitbucket.org/pypy/pypy/changeset/e15a627f9333/ Log:add a failing test about typecode y# (more failing tests in this file anyway) diff --git a/pypy/module/cpyext/test/test_get

[pypy-commit] pypy default: Don't wrap a random interp-level exception inside an app-level

2016-11-10 Thread arigo
Author: Armin Rigo Branch: Changeset: r88304:81d063af711f Date: 2016-11-10 19:29 +0100 http://bitbucket.org/pypy/pypy/changeset/81d063af711f/ Log:Don't wrap a random interp-level exception inside an app-level SystemError when untranslated, because it makes testing harder. Unc

[pypy-commit] pypy py3.5: Don't crash if SemLock.name is None

2016-11-10 Thread rlamy
Author: Ronan Lamy Branch: py3.5 Changeset: r88305:6ae7eb63289e Date: 2016-11-10 19:36 + http://bitbucket.org/pypy/pypy/changeset/6ae7eb63289e/ Log:Don't crash if SemLock.name is None diff --git a/pypy/module/_multiprocessing/interp_semaphore.py b/pypy/module/_multiprocessing/interp_sem

[pypy-commit] pypy py3.5: A failing test matching test_frame.py::FrameLocalsTest::test_clear_locals

2016-11-10 Thread rlamy
Author: Ronan Lamy Branch: py3.5 Changeset: r88306:cbba0303793c Date: 2016-11-10 20:15 + http://bitbucket.org/pypy/pypy/changeset/cbba0303793c/ Log:A failing test matching test_frame.py::FrameLocalsTest::test_clear_locals diff --git a/pypy/interpreter/test/test_pyframe.py b/pypy

[pypy-commit] cffi default: Update the docs to the style r"""...C source..."""

2016-11-10 Thread arigo
Author: Armin Rigo Branch: Changeset: r2809:2234672774e3 Date: 2016-11-11 07:36 +0100 http://bitbucket.org/cffi/cffi/changeset/2234672774e3/ Log:Update the docs to the style r"""...C source...""" diff --git a/doc/source/cdef.rst b/doc/source/cdef.rst --- a/doc/source/cdef.rst +++ b/doc/sour

[pypy-commit] pypy default: follow-up on 81d063af711f: only run this test in "pypy py.test -A"

2016-11-10 Thread arigo
Author: Armin Rigo Branch: Changeset: r88307:ba5310864c14 Date: 2016-11-11 08:04 +0100 http://bitbucket.org/pypy/pypy/changeset/ba5310864c14/ Log:follow-up on 81d063af711f: only run this test in "pypy py.test -A" diff --git a/pypy/module/__pypy__/test/test_special.py b/pypy/module/__pypy__

[pypy-commit] cffi default: Backed out changeset 0ecb431b2b94

2016-11-10 Thread arigo
Author: Armin Rigo Branch: Changeset: r2810:f5ef766cce5e Date: 2016-11-11 08:12 +0100 http://bitbucket.org/cffi/cffi/changeset/f5ef766cce5e/ Log:Backed out changeset 0ecb431b2b94 I think that the init function is not always exported any more now, which breaks everything. di

[pypy-commit] cffi default: A different fix for 0ecb431b2b94

2016-11-10 Thread arigo
Author: Armin Rigo Branch: Changeset: r2811:31a922c41068 Date: 2016-11-11 08:19 +0100 http://bitbucket.org/cffi/cffi/changeset/31a922c41068/ Log:A different fix for 0ecb431b2b94 diff --git a/cffi/_embedding.h b/cffi/_embedding.h --- a/cffi/_embedding.h +++ b/cffi/_embedding.h @@ -366,7 +366

[pypy-commit] pypy default: import cffi/0ecb431b2b94

2016-11-10 Thread arigo
Author: Armin Rigo Branch: Changeset: r88308:c6501a0ed0d6 Date: 2016-11-11 08:20 +0100 http://bitbucket.org/pypy/pypy/changeset/c6501a0ed0d6/ Log:import cffi/0ecb431b2b94 diff --git a/lib_pypy/cffi/_embedding.h b/lib_pypy/cffi/_embedding.h --- a/lib_pypy/cffi/_embedding.h +++ b/lib_pypy/cff

[pypy-commit] pypy default: Added tag release-pypy2.7-v5.6.0 for changeset aff251e54385

2016-11-10 Thread mattip
Author: Matti Picus Branch: Changeset: r88309:2e4a0d78a7ae Date: 2016-11-11 09:15 +0200 http://bitbucket.org/pypy/pypy/changeset/2e4a0d78a7ae/ Log:Added tag release-pypy2.7-v5.6.0 for changeset aff251e54385 diff --git a/.hgtags b/.hgtags --- a/.hgtags +++ b/.hgtags @@ -33,3 +33,4 @@ 050d84

[pypy-commit] pypy default: tweak repackage script for (yet another) different branch name

2016-11-10 Thread mattip
Author: Matti Picus Branch: Changeset: r88310:94adb652ea1f Date: 2016-11-11 09:57 +0200 http://bitbucket.org/pypy/pypy/changeset/94adb652ea1f/ Log:tweak repackage script for (yet another) different branch name diff --git a/pypy/tool/release/repackage.sh b/pypy/tool/release/repackage.sh ---