[pypy-commit] pypy default: Trying to output the stdout/stderr but only in failure cases

2014-09-04 Thread arigo
Author: Armin Rigo ar...@tunes.org Branch: Changeset: r73295:59dec5f6241b Date: 2014-09-04 10:33 +0200 http://bitbucket.org/pypy/pypy/changeset/59dec5f6241b/ Log:Trying to output the stdout/stderr but only in failure cases diff --git a/_pytest/resultlog.py b/_pytest/resultlog.py ---

[pypy-commit] stmgc default: add minimal privatization in signal handler

2014-09-04 Thread Raemi
Author: Remi Meier remi.me...@inf.ethz.ch Branch: Changeset: r1344:69b4538466fc Date: 2014-09-04 10:35 +0200 http://bitbucket.org/pypy/stmgc/changeset/69b4538466fc/ Log:add minimal privatization in signal handler diff --git a/c8/stm/core.c b/c8/stm/core.c --- a/c8/stm/core.c +++

[pypy-commit] pypy default: Translation fix

2014-09-04 Thread arigo
Author: Armin Rigo ar...@tunes.org Branch: Changeset: r73296:fe132a89e725 Date: 2014-09-04 10:37 +0200 http://bitbucket.org/pypy/pypy/changeset/fe132a89e725/ Log:Translation fix diff --git a/rpython/jit/backend/arm/codebuilder.py b/rpython/jit/backend/arm/codebuilder.py ---

[pypy-commit] stmgc default: more questions

2014-09-04 Thread Raemi
Author: Remi Meier remi.me...@inf.ethz.ch Branch: Changeset: r1345:72825d611f91 Date: 2014-09-04 10:51 +0200 http://bitbucket.org/pypy/stmgc/changeset/72825d611f91/ Log:more questions diff --git a/c8/stm/core.c b/c8/stm/core.c --- a/c8/stm/core.c +++ b/c8/stm/core.c @@ -15,6 +15,8 @@

[pypy-commit] stmgc default: attempt which ended in more questions

2014-09-04 Thread Raemi
Author: Remi Meier remi.me...@inf.ethz.ch Branch: Changeset: r1346:0fa234f3b87a Date: 2014-09-04 11:14 +0200 http://bitbucket.org/pypy/stmgc/changeset/0fa234f3b87a/ Log:attempt which ended in more questions diff --git a/c8/stm/core.c b/c8/stm/core.c --- a/c8/stm/core.c +++ b/c8/stm/core.c

[pypy-commit] stmgc default: Simplify the typecasts

2014-09-04 Thread arigo
Author: Armin Rigo ar...@tunes.org Branch: Changeset: r1347:b2171f4a0a0b Date: 2014-09-04 11:19 +0200 http://bitbucket.org/pypy/stmgc/changeset/b2171f4a0a0b/ Log:Simplify the typecasts diff --git a/c8/stm/core.c b/c8/stm/core.c --- a/c8/stm/core.c +++ b/c8/stm/core.c @@ -120,16 +120,15 @@

[pypy-commit] stmgc default: let's just do that for now

2014-09-04 Thread Raemi
Author: Remi Meier remi.me...@inf.ethz.ch Branch: Changeset: r1348:45b6f201404c Date: 2014-09-04 11:20 +0200 http://bitbucket.org/pypy/stmgc/changeset/45b6f201404c/ Log:let's just do that for now diff --git a/c8/stm/core.c b/c8/stm/core.c --- a/c8/stm/core.c +++ b/c8/stm/core.c @@ -113,6

[pypy-commit] stmgc default: Merge

2014-09-04 Thread Raemi
Author: Remi Meier remi.me...@inf.ethz.ch Branch: Changeset: r1349:272ec2f42b17 Date: 2014-09-04 11:20 +0200 http://bitbucket.org/pypy/stmgc/changeset/272ec2f42b17/ Log:Merge diff --git a/c8/stm/core.c b/c8/stm/core.c --- a/c8/stm/core.c +++ b/c8/stm/core.c @@ -121,16 +121,15 @@ static

[pypy-commit] stmgc default: make modified_old_objs a tree

2014-09-04 Thread Raemi
Author: Remi Meier remi.me...@inf.ethz.ch Branch: Changeset: r1350:8a58897dff57 Date: 2014-09-04 13:25 +0200 http://bitbucket.org/pypy/stmgc/changeset/8a58897dff57/ Log:make modified_old_objs a tree diff --git a/c8/stm/core.c b/c8/stm/core.c --- a/c8/stm/core.c +++ b/c8/stm/core.c @@ -45,7

[pypy-commit] pypy default: Fix test

2014-09-04 Thread arigo
Author: Armin Rigo ar...@tunes.org Branch: Changeset: r73297:b15ac44c3739 Date: 2014-09-04 14:21 +0200 http://bitbucket.org/pypy/pypy/changeset/b15ac44c3739/ Log:Fix test diff --git a/pypy/module/pypyjit/test_pypy_c/test_cprofile.py b/pypy/module/pypyjit/test_pypy_c/test_cprofile.py ---

[pypy-commit] pypy default: 32-bit JIT: avoid one obscure call(llong_sub, x, 0)

2014-09-04 Thread arigo
Author: Armin Rigo ar...@tunes.org Branch: Changeset: r73298:3f18f8fae752 Date: 2014-09-04 14:26 +0200 http://bitbucket.org/pypy/pypy/changeset/3f18f8fae752/ Log:32-bit JIT: avoid one obscure call(llong_sub, x, 0) diff --git a/pypy/module/_lsprof/interp_lsprof.py

[pypy-commit] pypy default: The list comprehension optimization was not enabled in RPython loops

2014-09-04 Thread arigo
Author: Armin Rigo ar...@tunes.org Branch: Changeset: r73299:3ffe46ffd7ba Date: 2014-09-04 15:29 +0200 http://bitbucket.org/pypy/pypy/changeset/3ffe46ffd7ba/ Log:The list comprehension optimization was not enabled in RPython loops over strings (only lists and dicts). diff --git

[pypy-commit] pypy default: Iterating over an RPython string can load the length of the string only once

2014-09-04 Thread arigo
Author: Armin Rigo ar...@tunes.org Branch: Changeset: r73300:433eafa3297b Date: 2014-09-04 15:34 +0200 http://bitbucket.org/pypy/pypy/changeset/433eafa3297b/ Log:Iterating over an RPython string can load the length of the string only once diff --git

[pypy-commit] pypy.org extradoc: merge heads

2014-09-04 Thread arigo
Author: Armin Rigo ar...@tunes.org Branch: extradoc Changeset: r531:434c019b914d Date: 2014-09-04 15:59 +0200 http://bitbucket.org/pypy/pypy.org/changeset/434c019b914d/ Log:merge heads diff --git a/don1.html b/don1.html --- a/don1.html +++ b/don1.html @@ -9,13 +9,13 @@ script

[pypy-commit] pypy.org extradoc: Link to the matching funding blog post

2014-09-04 Thread arigo
Author: Armin Rigo ar...@tunes.org Branch: extradoc Changeset: r530:17666b561e9b Date: 2014-09-04 15:58 +0200 http://bitbucket.org/pypy/pypy.org/changeset/17666b561e9b/ Log:Link to the matching funding blog post diff --git a/don1.html b/don1.html --- a/don1.html +++ b/don1.html @@ -20,6

[pypy-commit] pypy default: Backed out changeset 3f18f8fae752

2014-09-04 Thread arigo
Author: Armin Rigo ar...@tunes.org Branch: Changeset: r73301:e12c22423464 Date: 2014-09-04 16:04 +0200 http://bitbucket.org/pypy/pypy/changeset/e12c22423464/ Log:Backed out changeset 3f18f8fae752 Doesn't work. I guess ll_subt is not constant early enough. diff --git

[pypy-commit] stmgc default: progress

2014-09-04 Thread Raemi
Author: Remi Meier remi.me...@inf.ethz.ch Branch: Changeset: r1352:6db6026fb9a6 Date: 2014-09-04 17:32 +0200 http://bitbucket.org/pypy/stmgc/changeset/6db6026fb9a6/ Log:progress diff --git a/c8/stm/core.c b/c8/stm/core.c --- a/c8/stm/core.c +++ b/c8/stm/core.c @@ -7,6 +7,28 @@ /*

[pypy-commit] stmgc default: some refactoring

2014-09-04 Thread Raemi
Author: Remi Meier remi.me...@inf.ethz.ch Branch: Changeset: r1351:419893208d27 Date: 2014-09-04 16:11 +0200 http://bitbucket.org/pypy/stmgc/changeset/419893208d27/ Log:some refactoring diff --git a/c8/stm/core.c b/c8/stm/core.c --- a/c8/stm/core.c +++ b/c8/stm/core.c @@ -29,7 +29,8 @@

[pypy-commit] pypy default: Use the newly RPython list(string) here

2014-09-04 Thread arigo
Author: Armin Rigo ar...@tunes.org Branch: Changeset: r73304:1ee3f38d059e Date: 2014-09-04 17:35 +0200 http://bitbucket.org/pypy/pypy/changeset/1ee3f38d059e/ Log:Use the newly RPython list(string) here diff --git a/pypy/module/_io/interp_stringio.py b/pypy/module/_io/interp_stringio.py ---

[pypy-commit] stmgc default: some private, shared, logical page, virtual page, file page, explanation

2014-09-04 Thread Raemi
Author: Remi Meier remi.me...@inf.ethz.ch Branch: Changeset: r1353:7d666a0a78f2 Date: 2014-09-04 17:43 +0200 http://bitbucket.org/pypy/stmgc/changeset/7d666a0a78f2/ Log:some private, shared, logical page, virtual page, file page, explanation diff --git a/c8/stm/pages.h

[pypy-commit] pypy default: work on the release announcement, not very happy yet

2014-09-04 Thread fijal
Author: Maciej Fijalkowski fij...@gmail.com Branch: Changeset: r73306:f87daa98dd77 Date: 2014-09-04 10:25 -0600 http://bitbucket.org/pypy/pypy/changeset/f87daa98dd77/ Log:work on the release announcement, not very happy yet diff --git a/pypy/doc/release-2.4.0.rst

[pypy-commit] pypy.org extradoc: update the values

2014-09-04 Thread arigo
Author: Armin Rigo ar...@tunes.org Branch: extradoc Changeset: r532:b47553d7e443 Date: 2014-09-04 22:43 +0200 http://bitbucket.org/pypy/pypy.org/changeset/b47553d7e443/ Log:update the values diff --git a/don3.html b/don3.html --- a/don3.html +++ b/don3.html @@ -15,7 +15,7 @@ /script