[pypy-commit] pypy default: move low-level stuff out of unaryop

2014-01-31 Thread rlamy
Author: Ronan Lamy Branch: Changeset: r69040:2ad0b1147d25 Date: 2014-02-01 02:01 + http://bitbucket.org/pypy/pypy/changeset/2ad0b1147d25/ Log:move low-level stuff out of unaryop diff --git a/rpython/annotator/unaryop.py b/rpython/annotator/unaryop.py --- a/rpython/annotator/unaryop.py +

[pypy-commit] pypy default: fix test_handle after 1101ea526ac3

2014-01-31 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r69039:001e11396293 Date: 2014-01-31 12:45 -0500 http://bitbucket.org/pypy/pypy/changeset/001e11396293/ Log:fix test_handle after 1101ea526ac3 diff --git a/pypy/module/_cffi_backend/test/test_handle.py b/pypy/module/_cffi_backend/test/test_handle.py

[pypy-commit] stmgc c7: small performance improvements thanks to cache-line alignment of locks (thanks kirma)

2014-01-31 Thread Remi Meier
Author: Remi Meier Branch: c7 Changeset: r700:04bbddecdb33 Date: 2014-01-31 16:32 +0100 http://bitbucket.org/pypy/stmgc/changeset/04bbddecdb33/ Log:small performance improvements thanks to cache-line alignment of locks (thanks kirma) diff --git a/c7/stmsync.c b/c7/stmsync.c --- a/c7/s

[pypy-commit] stmgc c7: minor changes

2014-01-31 Thread Remi Meier
Author: Remi Meier Branch: c7 Changeset: r699:d3750e653c90 Date: 2014-01-31 16:05 +0100 http://bitbucket.org/pypy/stmgc/changeset/d3750e653c90/ Log:minor changes diff --git a/c7/core.h b/c7/core.h --- a/c7/core.h +++ b/c7/core.h @@ -211,7 +211,7 @@ extern size_t stmcb_size(struct object_s *)

[pypy-commit] pypy default: Remove leftover pdb

2014-01-31 Thread alex_gaynor
Author: Alex Gaynor Branch: Changeset: r69038:691e7bfae05a Date: 2014-01-31 07:16 -0800 http://bitbucket.org/pypy/pypy/changeset/691e7bfae05a/ Log:Remove leftover pdb diff --git a/pypy/objspace/std/test/test_mapdict.py b/pypy/objspace/std/test/test_mapdict.py --- a/pypy/objspace/std/test/t

[pypy-commit] pypy resume-refactor: shuffle stuff around, one more test pass

2014-01-31 Thread fijal
Author: Maciej Fijalkowski Branch: resume-refactor Changeset: r69037:44ef0203c38b Date: 2014-01-31 15:55 +0100 http://bitbucket.org/pypy/pypy/changeset/44ef0203c38b/ Log:shuffle stuff around, one more test pass diff --git a/rpython/jit/metainterp/optimizeopt/__init__.py b/rpython/jit/metain

[pypy-commit] stmgc c7: add a teardown_pthread function to free the shadow stack

2014-01-31 Thread Remi Meier
Author: Remi Meier Branch: c7 Changeset: r696:2a59456815d8 Date: 2014-01-31 13:41 +0100 http://bitbucket.org/pypy/stmgc/changeset/2a59456815d8/ Log:add a teardown_pthread function to free the shadow stack diff --git a/c7/core.c b/c7/core.c --- a/c7/core.c +++ b/c7/core.c @@ -282,9 +282,6 @@

[pypy-commit] stmgc c7: update demo2

2014-01-31 Thread Remi Meier
Author: Remi Meier Branch: c7 Changeset: r698:738662da75b3 Date: 2014-01-31 14:18 +0100 http://bitbucket.org/pypy/stmgc/changeset/738662da75b3/ Log:update demo2 diff --git a/c7/Makefile b/c7/Makefile --- a/c7/Makefile +++ b/c7/Makefile @@ -14,9 +14,9 @@ rm -f $(BUILD_EXE) $(DEBUG_EXE)

[pypy-commit] stmgc c7: little things

2014-01-31 Thread Remi Meier
Author: Remi Meier Branch: c7 Changeset: r697:7bc72d2248b8 Date: 2014-01-31 13:59 +0100 http://bitbucket.org/pypy/stmgc/changeset/7bc72d2248b8/ Log:little things diff --git a/c7/stmsync.c b/c7/stmsync.c --- a/c7/stmsync.c +++ b/c7/stmsync.c @@ -182,8 +182,6 @@ assert(static_threads[i

[pypy-commit] pypy default: merge

2014-01-31 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r69036:22ee335c3d51 Date: 2014-01-31 13:58 +0100 http://bitbucket.org/pypy/pypy/changeset/22ee335c3d51/ Log:merge diff --git a/pypy/module/_cffi_backend/handle.py b/pypy/module/_cffi_backend/handle.py --- a/pypy/module/_cffi_backend/handle.py +

[pypy-commit] pypy default: (fijal, arigo, cfbolz) Fix (hopefully) the case where deleting and

2014-01-31 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r69035:74b0b82fd9e2 Date: 2014-01-31 13:45 +0100 http://bitbucket.org/pypy/pypy/changeset/74b0b82fd9e2/ Log:(fijal, arigo, cfbolz) Fix (hopefully) the case where deleting and reinstantiating the attribute does not mark it as mutated diff

[pypy-commit] stmgc c7: WIP: allow for arbitrary number of pthreads using fixed

2014-01-31 Thread Remi Meier
Author: Remi Meier Branch: c7 Changeset: r695:59a2204a4c1b Date: 2014-01-31 13:29 +0100 http://bitbucket.org/pypy/stmgc/changeset/59a2204a4c1b/ Log:WIP: allow for arbitrary number of pthreads using fixed number of thread segments. first test with duhton works diff --git a/c7/core.c b/