[pypy-commit] benchmarks default: remove some c4 hacks. may still be useful in c7 but shouldn't be in a benchmark

2014-03-26 Thread Remi Meier
Author: Remi Meier Branch: Changeset: r241:20ec94a7ed50 Date: 2014-03-26 10:34 +0100 http://bitbucket.org/pypy/benchmarks/changeset/20ec94a7ed50/ Log:remove some c4 hacks. may still be useful in c7 but shouldn't be in a benchmark diff --git a/multithread/common/abstract_threading.py

[pypy-commit] lang-smalltalk storage: Added setup_module and teardown_module to every test module.

2014-03-26 Thread anton_gulenko
Author: Anton Gulenko Branch: storage Changeset: r698:83ba26abe561 Date: 2014-03-26 13:19 +0100 http://bitbucket.org/pypy/lang-smalltalk/changeset/83ba26abe561/ Log:Added setup_module and teardown_module to every test module. All module-wide resources are cleaned up after the tests; a

[pypy-commit] pypy stmgc-c7: probably fixes something (call_assembler didn't assume next op could be in a

2014-03-26 Thread Remi Meier
Author: Remi Meier Branch: stmgc-c7 Changeset: r70295:4fc00f232e44 Date: 2014-03-26 14:35 +0100 http://bitbucket.org/pypy/pypy/changeset/4fc00f232e44/ Log:probably fixes something (call_assembler didn't assume next op could be in a new transaction & it looks like we didn't save roots a

[pypy-commit] pypy stmgc-c7: add a stmrewrite test that was fixed by the previous commit

2014-03-26 Thread Remi Meier
Author: Remi Meier Branch: stmgc-c7 Changeset: r70296:8732882f7eac Date: 2014-03-26 14:46 +0100 http://bitbucket.org/pypy/pypy/changeset/8732882f7eac/ Log:add a stmrewrite test that was fixed by the previous commit diff --git a/rpython/jit/backend/llsupport/test/test_stmrewrite.py b/rpython/

[pypy-commit] lang-smalltalk storage: Removed hack for loading mini.image, replaced with clean distinguishing between modern and non-modern images.

2014-03-26 Thread anton_gulenko
Author: Anton Gulenko Branch: storage Changeset: r700:fac293b61449 Date: 2014-03-26 13:58 +0100 http://bitbucket.org/pypy/lang-smalltalk/changeset/fac293b61449/ Log:Removed hack for loading mini.image, replaced with clean distinguishing between modern and non-modern images. diff --gi

[pypy-commit] lang-smalltalk storage: test_wrapper also needs a bootstrapped space.

2014-03-26 Thread anton_gulenko
Author: Anton Gulenko Branch: storage Changeset: r703:9f2f59e9acaf Date: 2014-03-26 15:55 +0100 http://bitbucket.org/pypy/lang-smalltalk/changeset/9f2f59e9acaf/ Log:test_wrapper also needs a bootstrapped space. Removed breakpoint. Fixed RPython compile error. diff --git a/spyvm/objsp

[pypy-commit] lang-smalltalk storage: Removed empty file.

2014-03-26 Thread anton_gulenko
Author: Anton Gulenko Branch: storage Changeset: r701:27ce1bfd3196 Date: 2014-03-26 14:30 +0100 http://bitbucket.org/pypy/lang-smalltalk/changeset/27ce1bfd3196/ Log:Removed empty file. diff --git a/a b/a deleted file mode 100644 ___ pypy-commit mai

[pypy-commit] lang-smalltalk storage: Removed obsolete method.

2014-03-26 Thread anton_gulenko
Author: Anton Gulenko Branch: storage Changeset: r699:12f5258a6002 Date: 2014-03-26 13:20 +0100 http://bitbucket.org/pypy/lang-smalltalk/changeset/12f5258a6002/ Log:Removed obsolete method. diff --git a/spyvm/model.py b/spyvm/model.py --- a/spyvm/model.py +++ b/spyvm/model.py @@ -166,9 +166,

[pypy-commit] lang-smalltalk storage: Cleaned up bootstrapping of ObjSpace and especially BootstrappedObjSpace for tests.

2014-03-26 Thread anton_gulenko
Author: Anton Gulenko Branch: storage Changeset: r702:5d8e0a95e3f9 Date: 2014-03-26 15:41 +0100 http://bitbucket.org/pypy/lang-smalltalk/changeset/5d8e0a95e3f9/ Log:Cleaned up bootstrapping of ObjSpace and especially BootstrappedObjSpace for tests. Tests now selectively bootstrap the

[pypy-commit] stmgc default: initial HTM version

2014-03-26 Thread Remi Meier
Author: Remi Meier Branch: Changeset: r1097:e43e756ae446 Date: 2014-03-26 18:21 +0100 http://bitbucket.org/pypy/stmgc/changeset/e43e756ae446/ Log:initial HTM version diff --git a/duhton/Makefile b/duhton/Makefile --- a/duhton/Makefile +++ b/duhton/Makefile @@ -25,5 +25,13 @@ clang -D

[pypy-commit] stmgc default: fixes

2014-03-26 Thread Remi Meier
Author: Remi Meier Branch: Changeset: r1098:80e72e01e2b8 Date: 2014-03-26 18:44 +0100 http://bitbucket.org/pypy/stmgc/changeset/80e72e01e2b8/ Log:fixes diff --git a/htm-c7/htm.h b/htm-c7/htm.h --- a/htm-c7/htm.h +++ b/htm-c7/htm.h @@ -18,7 +18,7 @@ #define XBEGIN_XABORT_ARG(x) (((x) >> 24)

[pypy-commit] pypy default: fix np.empty_like(dtype=None) not copying dtype (issue1715)

2014-03-26 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r70297:bf6bb7bf1035 Date: 2014-03-26 13:52 -0400 http://bitbucket.org/pypy/pypy/changeset/bf6bb7bf1035/ Log:fix np.empty_like(dtype=None) not copying dtype (issue1715) diff --git a/pypy/module/micronumpy/ctors.py b/pypy/module/micronumpy/ctors.py ---

[pypy-commit] pypy default: support order=K in array ctors (issue1711)

2014-03-26 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r70298:db6f95b7c608 Date: 2014-03-26 14:05 -0400 http://bitbucket.org/pypy/pypy/changeset/db6f95b7c608/ Log:support order=K in array ctors (issue1711) diff --git a/pypy/module/micronumpy/ctors.py b/pypy/module/micronumpy/ctors.py --- a/pypy/module/mic

[pypy-commit] pypy default: some tests are not strict ansi C, on win32 compile as C++

2014-03-26 Thread mattip
Author: Matti Picus Branch: Changeset: r70299:ccdd17cd5300 Date: 2014-03-26 22:47 +0200 http://bitbucket.org/pypy/pypy/changeset/ccdd17cd5300/ Log:some tests are not strict ansi C, on win32 compile as C++ diff --git a/pypy/module/cpyext/test/test_cpyext.py b/pypy/module/cpyext/test/test_cp

[pypy-commit] pypy default: correct types via casting

2014-03-26 Thread mattip
Author: Matti Picus Branch: Changeset: r70300:bef3dc99bdd7 Date: 2014-03-26 23:01 +0200 http://bitbucket.org/pypy/pypy/changeset/bef3dc99bdd7/ Log:correct types via casting diff --git a/pypy/module/cpyext/test/test_intobject.py b/pypy/module/cpyext/test/test_intobject.py --- a/pypy/module/

[pypy-commit] pypy default: true is a keyword

2014-03-26 Thread mattip
Author: Matti Picus Branch: Changeset: r70301:050293498791 Date: 2014-03-26 23:10 +0200 http://bitbucket.org/pypy/pypy/changeset/050293498791/ Log:true is a keyword diff --git a/pypy/module/cpyext/test/test_cpyext.py b/pypy/module/cpyext/test/test_cpyext.py --- a/pypy/module/cpyext/test/te

[pypy-commit] pypy default: fix descr_int/long/float on numpy scalars (issue1590)

2014-03-26 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r70302:297f0a5cd941 Date: 2014-03-26 19:31 -0400 http://bitbucket.org/pypy/pypy/changeset/297f0a5cd941/ Log:fix descr_int/long/float on numpy scalars (issue1590) diff --git a/pypy/module/micronumpy/boxes.py b/pypy/module/micronumpy/boxes.py --- a/pypy

[pypy-commit] pypy default: partial backout of bef3dc99bdd7 (broke linux tests)

2014-03-26 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r70303:a1d21ae8c4d3 Date: 2014-03-26 19:41 -0400 http://bitbucket.org/pypy/pypy/changeset/a1d21ae8c4d3/ Log:partial backout of bef3dc99bdd7 (broke linux tests) diff --git a/pypy/module/cpyext/test/test_pyerrors.py b/pypy/module/cpyext/test/test_pyerr