[pypy-commit] pypy default: merge heads

2014-06-28 Thread arigo
Author: Armin Rigo Branch: Changeset: r72262:ce8c750062dc Date: 2014-06-28 10:57 +0200 http://bitbucket.org/pypy/pypy/changeset/ce8c750062dc/ Log:merge heads diff --git a/pypy/doc/faq.rst b/pypy/doc/faq.rst --- a/pypy/doc/faq.rst +++ b/pypy/doc/faq.rst @@ -465,9 +465,13 @@ This is docume

[pypy-commit] pypy default: Oups, fix -- can't use the GC here, at least in some tests

2014-06-28 Thread arigo
Author: Armin Rigo Branch: Changeset: r72261:0bbd2a9b36a6 Date: 2014-06-28 10:57 +0200 http://bitbucket.org/pypy/pypy/changeset/0bbd2a9b36a6/ Log:Oups, fix -- can't use the GC here, at least in some tests diff --git a/rpython/rtyper/lltypesystem/rffi.py b/rpython/rtyper/lltypesystem/rffi.p

[pypy-commit] pypy default: oups

2014-06-28 Thread arigo
Author: Armin Rigo Branch: Changeset: r72263:f15cd1108f0e Date: 2014-06-28 10:24 + http://bitbucket.org/pypy/pypy/changeset/f15cd1108f0e/ Log:oups diff --git a/rpython/translator/c/src/thread_pthread.c b/rpython/translator/c/src/thread_pthread.c --- a/rpython/translator/c/src/thread_pt

[pypy-commit] pypy default: Change appending into a list into using a chained list.

2014-06-28 Thread arigo
Author: Armin Rigo Branch: Changeset: r72265:f7222d0d5407 Date: 2014-06-28 16:17 +0200 http://bitbucket.org/pypy/pypy/changeset/f7222d0d5407/ Log:Change appending into a list into using a chained list. diff --git a/pypy/interpreter/executioncontext.py b/pypy/interpreter/executioncontext.py

[pypy-commit] pypy default: Potential test fix

2014-06-28 Thread arigo
Author: Armin Rigo Branch: Changeset: r72264:baf99c71c6cb Date: 2014-06-28 16:16 +0200 http://bitbucket.org/pypy/pypy/changeset/baf99c71c6cb/ Log:Potential test fix diff --git a/rpython/memory/test/snippet.py b/rpython/memory/test/snippet.py --- a/rpython/memory/test/snippet.py +++ b/rpytho

[pypy-commit] pypy default: merge heads

2014-06-28 Thread arigo
Author: Armin Rigo Branch: Changeset: r72266:913f4c5ecaaa Date: 2014-06-28 17:19 +0200 http://bitbucket.org/pypy/pypy/changeset/913f4c5ecaaa/ Log:merge heads diff --git a/rpython/translator/c/src/thread_pthread.c b/rpython/translator/c/src/thread_pthread.c --- a/rpython/translator/c/src/th

[pypy-commit] pypy default: Comment describing how f7222d0d5407 is enough to fix issue 1805.

2014-06-28 Thread arigo
Author: Armin Rigo Branch: Changeset: r72267:848aac545036 Date: 2014-06-28 17:36 +0200 http://bitbucket.org/pypy/pypy/changeset/848aac545036/ Log:Comment describing how f7222d0d5407 is enough to fix issue 1805. diff --git a/pypy/interpreter/executioncontext.py b/pypy/interpreter/executionc

[pypy-commit] pypy default: Mark this __del__ as must-be-light-finalizer

2014-06-28 Thread alex_gaynor
Author: Alex Gaynor Branch: Changeset: r72268:63f6ae36ba01 Date: 2014-06-28 10:05 -0700 http://bitbucket.org/pypy/pypy/changeset/63f6ae36ba01/ Log:Mark this __del__ as must-be-light-finalizer diff --git a/pypy/module/_cffi_backend/ctypefunc.py b/pypy/module/_cffi_backend/ctypefunc.py --- a

[pypy-commit] pypy scalar-operations: simplify handling of np.array()'s ndmin parameter

2014-06-28 Thread rlamy
Author: Ronan Lamy Branch: scalar-operations Changeset: r72271:4f27ccc29f40 Date: 2014-06-28 19:30 +0100 http://bitbucket.org/pypy/pypy/changeset/4f27ccc29f40/ Log:simplify handling of np.array()'s ndmin parameter diff --git a/pypy/module/micronumpy/ctors.py b/pypy/module/micronumpy/ctors.py

[pypy-commit] pypy scalar-operations: avoid unnecesary recursion

2014-06-28 Thread rlamy
Author: Ronan Lamy Branch: scalar-operations Changeset: r72269:85a336b9ee2d Date: 2014-06-27 02:10 +0100 http://bitbucket.org/pypy/pypy/changeset/85a336b9ee2d/ Log:avoid unnecesary recursion diff --git a/pypy/module/micronumpy/ctors.py b/pypy/module/micronumpy/ctors.py --- a/pypy/module/micr

[pypy-commit] pypy scalar-operations: extract try_array_method() from array()

2014-06-28 Thread rlamy
Author: Ronan Lamy Branch: scalar-operations Changeset: r72270:6fc0175b3286 Date: 2014-06-27 23:14 +0100 http://bitbucket.org/pypy/pypy/changeset/6fc0175b3286/ Log:extract try_array_method() from array() diff --git a/pypy/module/micronumpy/ctors.py b/pypy/module/micronumpy/ctors.py --- a/pyp