[pypy-commit] pypy default: fix test

2014-04-18 Thread arigo
Author: Armin Rigo Branch: Changeset: r70751:85e7dc6a1289 Date: 2014-04-18 09:44 +0200 http://bitbucket.org/pypy/pypy/changeset/85e7dc6a1289/ Log:fix test diff --git a/rpython/rlib/test/test_rlocale.py b/rpython/rlib/test/test_rlocale.py --- a/rpython/rlib/test/test_rlocale.py +++ b/rpytho

[pypy-commit] pypy stmgc-c7: redo this optimization

2014-04-18 Thread arigo
Author: Armin Rigo Branch: stmgc-c7 Changeset: r70752:2712ec3d1a46 Date: 2014-04-18 10:02 +0200 http://bitbucket.org/pypy/pypy/changeset/2712ec3d1a46/ Log:redo this optimization diff --git a/rpython/translator/stm/src_stm/stmgcintf.c b/rpython/translator/stm/src_stm/stmgcintf.c --- a/rpytho

[pypy-commit] stmgc marker: Get started

2014-04-18 Thread arigo
Author: Armin Rigo Branch: marker Changeset: r1161:e24c66f0b2b4 Date: 2014-04-18 11:11 +0200 http://bitbucket.org/pypy/stmgc/changeset/e24c66f0b2b4/ Log:Get started diff --git a/c7/stm/core.c b/c7/stm/core.c --- a/c7/stm/core.c +++ b/c7/stm/core.c @@ -630,6 +630,7 @@ value before the

[pypy-commit] stmgc marker: "Markers", which are a lightweight but ad-hoc way to mark the current position

2014-04-18 Thread arigo
Author: Armin Rigo Branch: marker Changeset: r1160:4d1f8449c75a Date: 2014-04-18 11:10 +0200 http://bitbucket.org/pypy/stmgc/changeset/4d1f8449c75a/ Log:"Markers", which are a lightweight but ad-hoc way to mark the current position ___ pypy

[pypy-commit] stmgc marker: Fixes, see comment in marker.c

2014-04-18 Thread arigo
Author: Armin Rigo Branch: marker Changeset: r1162:80d12fdc0b89 Date: 2014-04-18 11:32 +0200 http://bitbucket.org/pypy/stmgc/changeset/80d12fdc0b89/ Log:Fixes, see comment in marker.c diff --git a/c7/stm/core.c b/c7/stm/core.c --- a/c7/stm/core.c +++ b/c7/stm/core.c @@ -620,6 +620,9 @@

[pypy-commit] stmgc marker: Tweaks, and check with demo2.c that it's usable from C code

2014-04-18 Thread arigo
Author: Armin Rigo Branch: marker Changeset: r1163:9568cd489776 Date: 2014-04-18 12:06 +0200 http://bitbucket.org/pypy/stmgc/changeset/9568cd489776/ Log:Tweaks, and check with demo2.c that it's usable from C code diff --git a/c7/demo/demo2.c b/c7/demo/demo2.c --- a/c7/demo/demo2.c +++ b/c7/d

[pypy-commit] stmgc default: Fix for release-demo2

2014-04-18 Thread arigo
Author: Armin Rigo Branch: Changeset: r1164:876e03efa95e Date: 2014-04-18 12:08 +0200 http://bitbucket.org/pypy/stmgc/changeset/876e03efa95e/ Log:Fix for release-demo2 diff --git a/c7/demo/demo2.c b/c7/demo/demo2.c --- a/c7/demo/demo2.c +++ b/c7/demo/demo2.c @@ -203,7 +203,7 @@ }

[pypy-commit] stmgc marker: hg merge default

2014-04-18 Thread arigo
Author: Armin Rigo Branch: marker Changeset: r1165:61e5e75b84f9 Date: 2014-04-18 12:09 +0200 http://bitbucket.org/pypy/stmgc/changeset/61e5e75b84f9/ Log:hg merge default diff --git a/c7/demo/demo2.c b/c7/demo/demo2.c --- a/c7/demo/demo2.c +++ b/c7/demo/demo2.c @@ -221,7 +221,7 @@ }

[pypy-commit] stmgc marker: Move this into macros. Should allow future optimizations or

2014-04-18 Thread arigo
Author: Armin Rigo Branch: marker Changeset: r1166:79b97025b1ba Date: 2014-04-18 12:25 +0200 http://bitbucket.org/pypy/stmgc/changeset/79b97025b1ba/ Log:Move this into macros. Should allow future optimizations or pushing in some other stack etc. diff --git a/c7/demo/demo2.c b/c7/demo

[pypy-commit] pypy default: "flushing forward"?

2014-04-18 Thread arigo
Author: Armin Rigo Branch: Changeset: r70753:17a4ad744f46 Date: 2014-04-18 13:23 +0200 http://bitbucket.org/pypy/pypy/changeset/17a4ad744f46/ Log:"flushing forward"? diff --git a/pypy/doc/stm.rst b/pypy/doc/stm.rst --- a/pypy/doc/stm.rst +++ b/pypy/doc/stm.rst @@ -40,7 +40,7 @@ ``pypy-stm`

[pypy-commit] pypy numpy-searchsorted: do error checking, add app-level searchsort, which needs getitem().

2014-04-18 Thread mattip
Author: Matti Picus Branch: numpy-searchsorted Changeset: r70754:3ec459c1d040 Date: 2014-04-18 15:34 +0300 http://bitbucket.org/pypy/pypy/changeset/3ec459c1d040/ Log:do error checking, add app-level searchsort, which needs getitem(). diff --git a/pypy/module/micronumpy/app_numpy.py b/pypy/m

[pypy-commit] pypy default: fix validation of missing r/w op_flag to nditer

2014-04-18 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r70755:9f3d775f07b7 Date: 2014-04-18 11:58 -0400 http://bitbucket.org/pypy/pypy/changeset/9f3d775f07b7/ Log:fix validation of missing r/w op_flag to nditer diff --git a/pypy/module/micronumpy/nditer.py b/pypy/module/micronumpy/nditer.py --- a/pypy/mod

[pypy-commit] pypy default: fix nditer getitem return types

2014-04-18 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r70756:f2b222d84fb1 Date: 2014-04-18 12:29 -0400 http://bitbucket.org/pypy/pypy/changeset/f2b222d84fb1/ Log:fix nditer getitem return types diff --git a/pypy/module/micronumpy/nditer.py b/pypy/module/micronumpy/nditer.py --- a/pypy/module/micronumpy/n

[pypy-commit] pypy default: more nditer cleanups

2014-04-18 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r70758:9afd3cb41ad2 Date: 2014-04-18 12:44 -0400 http://bitbucket.org/pypy/pypy/changeset/9afd3cb41ad2/ Log:more nditer cleanups diff --git a/pypy/module/micronumpy/nditer.py b/pypy/module/micronumpy/nditer.py --- a/pypy/module/micronumpy/nditer.py ++

[pypy-commit] pypy default: simplify

2014-04-18 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r70757:aba89d1880eb Date: 2014-04-18 12:35 -0400 http://bitbucket.org/pypy/pypy/changeset/aba89d1880eb/ Log:simplify diff --git a/pypy/module/micronumpy/nditer.py b/pypy/module/micronumpy/nditer.py --- a/pypy/module/micronumpy/nditer.py +++ b/pypy/mod

[pypy-commit] pypy py3k-fix-strategies: fix BytesStrategy iter to wrapbytes

2014-04-18 Thread pjenvey
Author: Philip Jenvey Branch: py3k-fix-strategies Changeset: r70760:724161bbeca1 Date: 2014-04-18 11:13 -0700 http://bitbucket.org/pypy/pypy/changeset/724161bbeca1/ Log:fix BytesStrategy iter to wrapbytes diff --git a/pypy/objspace/std/setobject.py b/pypy/objspace/std/setobject.py --- a/pypy

[pypy-commit] pypy py3k-fix-strategies: we now need bytes_w too

2014-04-18 Thread pjenvey
Author: Philip Jenvey Branch: py3k-fix-strategies Changeset: r70759:9953e025bce7 Date: 2014-04-18 11:13 -0700 http://bitbucket.org/pypy/pypy/changeset/9953e025bce7/ Log:we now need bytes_w too diff --git a/pypy/objspace/std/test/test_dictmultiobject.py b/pypy/objspace/std/test/test_dictmult

[pypy-commit] pypy default: simplify nditer

2014-04-18 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r70761:667ad75d7ce9 Date: 2014-04-18 14:51 -0400 http://bitbucket.org/pypy/pypy/changeset/667ad75d7ce9/ Log:simplify nditer diff --git a/pypy/module/micronumpy/iterators.py b/pypy/module/micronumpy/iterators.py --- a/pypy/module/micronumpy/iterators.

[pypy-commit] pypy default: support more variations of ndarray.item()

2014-04-18 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r70763:142661a32d5b Date: 2014-04-18 17:05 -0400 http://bitbucket.org/pypy/pypy/changeset/142661a32d5b/ Log:support more variations of ndarray.item() diff --git a/pypy/module/micronumpy/ndarray.py b/pypy/module/micronumpy/ndarray.py --- a/pypy/module

[pypy-commit] pypy default: small cleanups for flatiter

2014-04-18 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r70762:acdd090d79d7 Date: 2014-04-18 16:28 -0400 http://bitbucket.org/pypy/pypy/changeset/acdd090d79d7/ Log:small cleanups for flatiter diff --git a/pypy/module/micronumpy/flatiter.py b/pypy/module/micronumpy/flatiter.py --- a/pypy/module/micronumpy/

[pypy-commit] pypy default: Persist the file descriptor used by os.urandom, which speeds up individual calls to it

2014-04-18 Thread alex_gaynor
Author: Alex Gaynor Branch: Changeset: r70764:6810f401d08e Date: 2014-04-18 18:03 -0700 http://bitbucket.org/pypy/pypy/changeset/6810f401d08e/ Log:Persist the file descriptor used by os.urandom, which speeds up individual calls to it diff --git a/rpython/rlib/rurandom.py b/rpython/r

[pypy-commit] pypy reflex-support: rejig test skipping and use of dummy backend

2014-04-18 Thread wlav
Author: Wim Lavrijsen Branch: reflex-support Changeset: r70766:2a3916aaa1b8 Date: 2014-04-18 19:38 -0700 http://bitbucket.org/pypy/pypy/changeset/2a3916aaa1b8/ Log:rejig test skipping and use of dummy backend diff --git a/pypy/module/cppyy/test/Makefile b/pypy/module/cppyy/test/Makefile ---