[pypy-commit] pypy default: Be resistent against a random "pygame" module without "pygame.error"

2014-04-26 Thread arigo
Author: Armin Rigo Branch: Changeset: r71000:106784259a88 Date: 2014-04-26 10:07 +0200 http://bitbucket.org/pypy/pypy/changeset/106784259a88/ Log:Be resistent against a random "pygame" module without "pygame.error" diff --git a/dotviewer/graphserver.py b/dotviewer/graphserver.py --- a/dotvi

[pypy-commit] cffi default: issue #154: Mingw32 fixes

2014-04-26 Thread arigo
Author: Armin Rigo Branch: Changeset: r1507:494ce4e8d9f2 Date: 2014-04-26 10:34 +0200 http://bitbucket.org/cffi/cffi/changeset/494ce4e8d9f2/ Log:issue #154: Mingw32 fixes diff --git a/cffi/ffiplatform.py b/cffi/ffiplatform.py --- a/cffi/ffiplatform.py +++ b/cffi/ffiplatform.py @@ -38,6 +38,

[pypy-commit] pypy py3.3: Same trick as ad57911bdbc4, allows to import ctypes.util.

2014-04-26 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r71003:70fa7b2907b1 Date: 2014-04-26 12:26 +0200 http://bitbucket.org/pypy/pypy/changeset/70fa7b2907b1/ Log:Same trick as ad57911bdbc4, allows to import ctypes.util. diff --git a/lib-python/3/ctypes/util.py b/lib-python/3/ctypes/util.py -

[pypy-commit] pypy default: (cfbolz, arigo)

2014-04-26 Thread arigo
Author: Armin Rigo Branch: Changeset: r71004:5d641e103b00 Date: 2014-04-26 14:54 +0200 http://bitbucket.org/pypy/pypy/changeset/5d641e103b00/ Log:(cfbolz, arigo) Pfff. Found and fixed the issue with unrolling logic. diff --git a/rpython/jit/metainterp/optimizeopt/test/test_optimize

[pypy-commit] pypy default: Rename the test to something less generic

2014-04-26 Thread arigo
Author: Armin Rigo Branch: Changeset: r71005:924305e0dcf6 Date: 2014-04-26 14:58 +0200 http://bitbucket.org/pypy/pypy/changeset/924305e0dcf6/ Log:Rename the test to something less generic diff --git a/rpython/jit/metainterp/optimizeopt/test/test_optimizeopt.py b/rpython/jit/metainterp/opti

[pypy-commit] pypy default: mark XRangeStepOneIterator.stop as an immutable field

2014-04-26 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r71006:f32e46e00e4f Date: 2014-04-26 11:04 -0400 http://bitbucket.org/pypy/pypy/changeset/f32e46e00e4f/ Log:mark XRangeStepOneIterator.stop as an immutable field diff --git a/pypy/module/__builtin__/functional.py b/pypy/module/__builtin__/functional.

[pypy-commit] stmgc marker: Minimum work to pass test_double_abort_markers_cb_write_write

2014-04-26 Thread arigo
Author: Armin Rigo Branch: marker Changeset: r1182:64af26e96549 Date: 2014-04-26 18:38 +0200 http://bitbucket.org/pypy/stmgc/changeset/64af26e96549/ Log:Minimum work to pass test_double_abort_markers_cb_write_write diff --git a/c7/stm/contention.c b/c7/stm/contention.c --- a/c7/stm/contentio

[pypy-commit] stmgc marker: Self/other marker in case of inevitable/inevitable conflict

2014-04-26 Thread arigo
Author: Armin Rigo Branch: marker Changeset: r1183:2a4a393ac14c Date: 2014-04-26 18:58 +0200 http://bitbucket.org/pypy/stmgc/changeset/2a4a393ac14c/ Log:Self/other marker in case of inevitable/inevitable conflict diff --git a/c7/stm/contention.c b/c7/stm/contention.c --- a/c7/stm/contention.

[pypy-commit] stmgc marker: Report correctly write-read contention.

2014-04-26 Thread arigo
Author: Armin Rigo Branch: marker Changeset: r1184:5cc5bccf74cd Date: 2014-04-26 19:18 +0200 http://bitbucket.org/pypy/stmgc/changeset/5cc5bccf74cd/ Log:Report correctly write-read contention. diff --git a/c7/stm/contention.c b/c7/stm/contention.c --- a/c7/stm/contention.c +++ b/c7/stm/conte

[pypy-commit] stmgc marker: Add the stripped down version of timelog.txt from the abandoned timelog

2014-04-26 Thread arigo
Author: Armin Rigo Branch: marker Changeset: r1185:e256c296de87 Date: 2014-04-26 19:20 +0200 http://bitbucket.org/pypy/stmgc/changeset/e256c296de87/ Log:Add the stripped down version of timelog.txt from the abandoned timelog branch. diff --git a/c7/doc/marker.txt b/c7/doc/marker.txt

[pypy-commit] pypy default: Failing test for issue1743

2014-04-26 Thread alex_gaynor
Author: Alex Gaynor Branch: Changeset: r71007:a726eef8da83 Date: 2014-04-26 11:57 -0700 http://bitbucket.org/pypy/pypy/changeset/a726eef8da83/ Log:Failing test for issue1743 diff --git a/pypy/module/test_lib_pypy/test_greenlet.py b/pypy/module/test_lib_pypy/test_greenlet.py --- a/pypy/modu

[pypy-commit] pypy py3.3: Add range() attributes: start, stop, step.

2014-04-26 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r71009:135689ea903c Date: 2014-04-26 15:40 +0200 http://bitbucket.org/pypy/pypy/changeset/135689ea903c/ Log:Add range() attributes: start, stop, step. diff --git a/pypy/module/__builtin__/functional.py b/pypy/module/__builtin__/functiona

[pypy-commit] pypy py3.3: Equality for range objects is now based on equality of the underlying sequences

2014-04-26 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r71010:b33a765ba524 Date: 2014-04-26 21:45 +0200 http://bitbucket.org/pypy/pypy/changeset/b33a765ba524/ Log:Equality for range objects is now based on equality of the underlying sequences (CPython Issue #13201) diff --git a/pypy/m

[pypy-commit] pypy default: add test for issue 1696

2014-04-26 Thread mattip
Author: Matti Picus Branch: Changeset: r71011:5429a238b778 Date: 2014-04-27 00:56 +0300 http://bitbucket.org/pypy/pypy/changeset/5429a238b778/ Log:add test for issue 1696 diff --git a/pypy/module/zipimport/test/test_zipimport.py b/pypy/module/zipimport/test/test_zipimport.py --- a/pypy/mod