[pypy-commit] buildbot default: missing import

2014-02-22 Thread arigo
Author: Armin Rigo Branch: Changeset: r906:ab49565447d2 Date: 2014-02-22 10:46 +0100 http://bitbucket.org/pypy/buildbot/changeset/ab49565447d2/ Log:missing import diff --git a/bbhook/hook.py b/bbhook/hook.py --- a/bbhook/hook.py +++ b/bbhook/hook.py @@ -5,6 +5,7 @@ import time import thre

[pypy-commit] pypy default: Use the RPython-level detection of out-of-bound indices. This should

2014-02-22 Thread arigo
Author: Armin Rigo Branch: Changeset: r69269:311bb87a8956 Date: 2014-02-22 10:58 +0100 http://bitbucket.org/pypy/pypy/changeset/311bb87a8956/ Log:Use the RPython-level detection of out-of-bound indices. This should give better code when jitted (lower number of guards). diff --git a/

[pypy-commit] pypy default: The Python web site change broke the URL redirection to mail.python.org.

2014-02-22 Thread arigo
Author: Armin Rigo Branch: Changeset: r69270:1144d1950bde Date: 2014-02-22 11:10 +0100 http://bitbucket.org/pypy/pypy/changeset/1144d1950bde/ Log:The Python web site change broke the URL redirection to mail.python.org. Fix. diff --git a/pypy/doc/eventhistory.rst b/pypy/doc/eventhist

[pypy-commit] pypy.org extradoc: The Python web site change broke the URL redirection to

2014-02-22 Thread arigo
Author: Armin Rigo Branch: extradoc Changeset: r476:5f7e6ebc089c Date: 2014-02-22 11:10 +0100 http://bitbucket.org/pypy/pypy.org/changeset/5f7e6ebc089c/ Log:The Python web site change broke the URL redirection to mail.python.org. Fix. diff --git a/contact.html b/contact.html --- a/co

[pypy-commit] stmgc c7-refactor: Progress on copying the logic from minimark.py.

2014-02-22 Thread arigo
Author: Armin Rigo Branch: c7-refactor Changeset: r810:3993d902abc7 Date: 2014-02-22 18:15 +0100 http://bitbucket.org/pypy/stmgc/changeset/3993d902abc7/ Log:Progress on copying the logic from minimark.py. diff --git a/c7/stm/core.c b/c7/stm/core.c --- a/c7/stm/core.c +++ b/c7/stm/core.c @@ -

[pypy-commit] stmgc c7-refactor: Re-share the nursery pages after a minor collection

2014-02-22 Thread arigo
Author: Armin Rigo Branch: c7-refactor Changeset: r811:a8f773df8a63 Date: 2014-02-22 18:27 +0100 http://bitbucket.org/pypy/stmgc/changeset/a8f773df8a63/ Log:Re-share the nursery pages after a minor collection diff --git a/c7/stm/nursery.c b/c7/stm/nursery.c --- a/c7/stm/nursery.c +++ b/c7/st

[pypy-commit] pypy default: fix numpy.concatenate(axis=None)

2014-02-22 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r69272:a00ad3c03145 Date: 2014-02-22 13:52 -0500 http://bitbucket.org/pypy/pypy/changeset/a00ad3c03145/ Log:fix numpy.concatenate(axis=None) diff --git a/pypy/module/micronumpy/interp_arrayops.py b/pypy/module/micronumpy/interp_arrayops.py --- a/pypy

[pypy-commit] pypy default: improve dtype creation error messages

2014-02-22 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r69271:4a4a4fae4a49 Date: 2014-02-22 12:52 -0500 http://bitbucket.org/pypy/pypy/changeset/4a4a4fae4a49/ Log:improve dtype creation error messages diff --git a/pypy/module/micronumpy/interp_dtype.py b/pypy/module/micronumpy/interp_dtype.py --- a/pypy/

[pypy-commit] pypy default: implement comparison funcs for record types

2014-02-22 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r69273:9ba1d3bb478e Date: 2014-02-22 15:52 -0500 http://bitbucket.org/pypy/pypy/changeset/9ba1d3bb478e/ Log:implement comparison funcs for record types diff --git a/pypy/module/micronumpy/compile.py b/pypy/module/micronumpy/compile.py --- a/pypy/modu

[pypy-commit] pypy default: fix hash(np.dtype)

2014-02-22 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r69275:acb4d3bbfda9 Date: 2014-02-22 17:39 -0500 http://bitbucket.org/pypy/pypy/changeset/acb4d3bbfda9/ Log:fix hash(np.dtype) diff --git a/pypy/module/micronumpy/interp_dtype.py b/pypy/module/micronumpy/interp_dtype.py --- a/pypy/module/micronumpy/i

[pypy-commit] pypy default: support auto naming record dtype fields

2014-02-22 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r69274:f437d5038346 Date: 2014-02-22 17:24 -0500 http://bitbucket.org/pypy/pypy/changeset/f437d5038346/ Log:support auto naming record dtype fields diff --git a/pypy/module/micronumpy/interp_dtype.py b/pypy/module/micronumpy/interp_dtype.py --- a/pyp

[pypy-commit] pypy py3k: Fix bogus skipif which always skips these tests

2014-02-22 Thread arigo
Author: Armin Rigo Branch: py3k Changeset: r69276:4b0188d1eb55 Date: 2014-02-23 08:34 +0100 http://bitbucket.org/pypy/pypy/changeset/4b0188d1eb55/ Log:Fix bogus skipif which always skips these tests diff --git a/pypy/module/thread/test/test_lock.py b/pypy/module/thread/test/test_lock.py ---

[pypy-commit] pypy default: Backport from the py3k branch: add lock._py3k_acquire() with the

2014-02-22 Thread arigo
Author: Armin Rigo Branch: Changeset: r69277:9b4e9b797ba1 Date: 2014-02-23 08:43 +0100 http://bitbucket.org/pypy/pypy/changeset/9b4e9b797ba1/ Log:Backport from the py3k branch: add lock._py3k_acquire() with the same semantics as in Python 3. diff --git a/pypy/module/thread/os_lock.p

[pypy-commit] pypy default: Translation fix

2014-02-22 Thread arigo
Author: Armin Rigo Branch: Changeset: r69278:2def17020fa9 Date: 2014-02-23 08:57 +0100 http://bitbucket.org/pypy/pypy/changeset/2def17020fa9/ Log:Translation fix diff --git a/pypy/module/thread/os_lock.py b/pypy/module/thread/os_lock.py --- a/pypy/module/thread/os_lock.py +++ b/pypy/module/