[pypy-commit] stmgc default: Forgot that d->abortinfo also contains gc ptrs

2013-08-15 Thread arigo
Author: Armin Rigo Branch: Changeset: r476:50d9d16d6327 Date: 2013-08-15 11:26 +0200 http://bitbucket.org/pypy/stmgc/changeset/50d9d16d6327/ Log:Forgot that d->abortinfo also contains gc ptrs diff --git a/c4/gcpage.c b/c4/gcpage.c --- a/c4/gcpage.c +++ b/c4/gcpage.c @@ -496,6 +496,14 @@

[pypy-commit] pypy stmgc-static-barrier: import stmgc/50d9d16d6327

2013-08-15 Thread arigo
Author: Armin Rigo Branch: stmgc-static-barrier Changeset: r66161:246fc4c25260 Date: 2013-08-15 11:27 +0200 http://bitbucket.org/pypy/pypy/changeset/246fc4c25260/ Log:import stmgc/50d9d16d6327 diff --git a/rpython/translator/stm/src_stm/gcpage.c b/rpython/translator/stm/src_stm/gcpage.c ---

[pypy-commit] stmgc nonmovable-int-ref: implement stm_allocate_public_integer_address(). They need to be explicitely unregistered (freed), otherwise they survive everything.

2013-08-15 Thread Raemi
Author: Remi Meier Branch: nonmovable-int-ref Changeset: r477:6a465701aaa1 Date: 2013-08-15 13:07 +0200 http://bitbucket.org/pypy/stmgc/changeset/6a465701aaa1/ Log:implement stm_allocate_public_integer_address(). They need to be explicitely unregistered (freed), otherwise they survive

[pypy-commit] pypy default: failing test

2013-08-15 Thread hakanardo
Author: Hakan Ardo Branch: Changeset: r66162:6e2656749ce4 Date: 2013-08-15 16:56 +0200 http://bitbucket.org/pypy/pypy/changeset/6e2656749ce4/ Log:failing test diff --git a/pypy/module/array/test/test_array.py b/pypy/module/array/test/test_array.py --- a/pypy/module/array/test/test_array.py

[pypy-commit] pypy default: Add a test for the conversion of numpy complex to python complex

2013-08-15 Thread rguillebert
Author: Romain Guillebert Branch: Changeset: r66163:8d499d0d72d5 Date: 2013-08-15 17:06 +0200 http://bitbucket.org/pypy/pypy/changeset/8d499d0d72d5/ Log:Add a test for the conversion of numpy complex to python complex diff --git a/pypy/module/micronumpy/test/test_complex.py b/pypy/module/m

[pypy-commit] stmgc nonmovable-int-ref: merge

2013-08-15 Thread Raemi
Author: Remi Meier Branch: nonmovable-int-ref Changeset: r478:7924c243aab1 Date: 2013-08-15 13:09 +0200 http://bitbucket.org/pypy/stmgc/changeset/7924c243aab1/ Log:merge diff --git a/c4/gcpage.c b/c4/gcpage.c --- a/c4/gcpage.c +++ b/c4/gcpage.c @@ -550,6 +550,14 @@ visit_take_protec

[pypy-commit] stmgc default: fix embarrassing bug

2013-08-15 Thread Raemi
Author: Remi Meier Branch: Changeset: r479:c3bb5c223595 Date: 2013-08-15 18:19 +0200 http://bitbucket.org/pypy/stmgc/changeset/c3bb5c223595/ Log:fix embarrassing bug diff --git a/c4/et.c b/c4/et.c --- a/c4/et.c +++ b/c4/et.c @@ -1339,9 +1339,13 @@ and then free B, which will n

[pypy-commit] stmgc default: other test

2013-08-15 Thread Raemi
Author: Remi Meier Branch: Changeset: r480:e1a459d18ba1 Date: 2013-08-15 18:26 +0200 http://bitbucket.org/pypy/stmgc/changeset/e1a459d18ba1/ Log:other test diff --git a/c4/test/test_extra.py b/c4/test/test_extra.py --- a/c4/test/test_extra.py +++ b/c4/test/test_extra.py @@ -167,6 +167,16 @@

[pypy-commit] pypy default: Fix PyPy issue 1544

2013-08-15 Thread rguillebert
Author: Romain Guillebert Branch: Changeset: r66164:ce1c1b2ad027 Date: 2013-08-15 19:07 +0200 http://bitbucket.org/pypy/pypy/changeset/ce1c1b2ad027/ Log:Fix PyPy issue 1544 diff --git a/pypy/objspace/std/complextype.py b/pypy/objspace/std/complextype.py --- a/pypy/objspace/std/complextype.p

[pypy-commit] pypy default: space.isinstance -> space.isinstance_w

2013-08-15 Thread pjenvey
Author: Philip Jenvey Branch: Changeset: r66165:05961722cb69 Date: 2013-08-15 11:39 -0700 http://bitbucket.org/pypy/pypy/changeset/05961722cb69/ Log:space.isinstance -> space.isinstance_w diff --git a/pypy/module/_file/interp_file.py b/pypy/module/_file/interp_file.py --- a/pypy/module/_fil

[pypy-commit] pypy py3k: merge default

2013-08-15 Thread pjenvey
Author: Philip Jenvey Branch: py3k Changeset: r66167:8dc61b6df4f4 Date: 2013-08-15 12:05 -0700 http://bitbucket.org/pypy/pypy/changeset/8dc61b6df4f4/ Log:merge default diff --git a/pypy/doc/cppyy.rst b/pypy/doc/cppyy.rst --- a/pypy/doc/cppyy.rst +++ b/pypy/doc/cppyy.rst @@ -83,7 +83,7 @@ th

[pypy-commit] pypy default: 37b092c3f176 killed truncate_addr

2013-08-15 Thread pjenvey
Author: Philip Jenvey Branch: Changeset: r66166:1a05c73021bd Date: 2013-08-15 12:01 -0700 http://bitbucket.org/pypy/pypy/changeset/1a05c73021bd/ Log:37b092c3f176 killed truncate_addr diff --git a/pypy/tool/jitlogparser/parser.py b/pypy/tool/jitlogparser/parser.py --- a/pypy/tool/jitlogparse

[pypy-commit] pypy refactor-str-types: Add docstrings for str/unicode.

2013-08-15 Thread Manuel Jacob
Author: Manuel Jacob Branch: refactor-str-types Changeset: r66169:c89210aaa3b7 Date: 2013-08-15 23:54 +0200 http://bitbucket.org/pypy/pypy/changeset/c89210aaa3b7/ Log:Add docstrings for str/unicode. diff --git a/pypy/objspace/std/bytesobject.py b/pypy/objspace/std/bytesobject.py --- a/pypy/ob

[pypy-commit] pypy refactor-str-types: Add docstrings for bytearray.

2013-08-15 Thread Manuel Jacob
Author: Manuel Jacob Branch: refactor-str-types Changeset: r66168:dfad685e1e9c Date: 2013-08-15 23:35 +0200 http://bitbucket.org/pypy/pypy/changeset/dfad685e1e9c/ Log:Add docstrings for bytearray. diff --git a/pypy/objspace/std/bytearrayobject.py b/pypy/objspace/std/bytearrayobject.py --- a/

[pypy-commit] pypy default: wrapint -> space.newint

2013-08-15 Thread pjenvey
Author: Philip Jenvey Branch: Changeset: r66170:b9e203336e31 Date: 2013-08-15 17:07 -0700 http://bitbucket.org/pypy/pypy/changeset/b9e203336e31/ Log:wrapint -> space.newint diff --git a/pypy/objspace/std/bytearrayobject.py b/pypy/objspace/std/bytearrayobject.py --- a/pypy/objspace/std/byte