[pypy-commit] stmgc finalizer: passing test

2014-10-16 Thread arigo
Author: Armin Rigo Branch: finalizer Changeset: r1472:00b174b2900e Date: 2014-10-16 09:35 +0200 http://bitbucket.org/pypy/stmgc/changeset/00b174b2900e/ Log:passing test diff --git a/c7/test/test_finalizer.py b/c7/test/test_finalizer.py --- a/c7/test/test_finalizer.py +++ b/c7/test/test_final

[pypy-commit] pypy default: make toint check early whether the conversion *can't* work

2014-10-16 Thread cfbolz
Author: Carl Friedrich Bolz Branch: Changeset: r73976:de1298e766a8 Date: 2014-10-16 16:47 +0200 http://bitbucket.org/pypy/pypy/changeset/de1298e766a8/ Log:make toint check early whether the conversion *can't* work (for obscure reasons I have a context where I care about the

[pypy-commit] lang-smalltalk rstrategies: Added test, set recursion limit higher to make tests work in CPython.

2014-10-16 Thread anton_gulenko
Author: Anton Gulenko Branch: rstrategies Changeset: r1048:99d4a04ffa5a Date: 2014-09-18 13:34 +0200 http://bitbucket.org/pypy/lang-smalltalk/changeset/99d4a04ffa5a/ Log:Added test, set recursion limit higher to make tests work in CPython. diff --git a/spyvm/test/test_strategies.py b

[pypy-commit] lang-smalltalk rstrategies: Added automatic ordering of strategies before looking for a fitting strategy to use.

2014-10-16 Thread anton_gulenko
Author: Anton Gulenko Branch: rstrategies Changeset: r1046:c2386c8143de Date: 2014-09-08 18:30 +0200 http://bitbucket.org/pypy/lang-smalltalk/changeset/c2386c8143de/ Log:Added automatic ordering of strategies before looking for a fitting strategy to use. diff --git a/rstrategies.py b

[pypy-commit] lang-smalltalk rstrategies: Fixed RPython compilation.

2014-10-16 Thread anton_gulenko
Author: Anton Gulenko Branch: rstrategies Changeset: r1053:eeed8faa2479 Date: 2014-09-24 16:59 +0200 http://bitbucket.org/pypy/lang-smalltalk/changeset/eeed8faa2479/ Log:Fixed RPython compilation. diff --git a/spyvm/squeakimage.py b/spyvm/squeakimage.py --- a/spyvm/squeakimage.py +++ b/spyvm

[pypy-commit] lang-smalltalk rstrategies: Two performance optimizations in strategies.

2014-10-16 Thread anton_gulenko
Author: Anton Gulenko Branch: rstrategies Changeset: r1049:dbbcbc97abe1 Date: 2014-09-22 18:15 +0200 http://bitbucket.org/pypy/lang-smalltalk/changeset/dbbcbc97abe1/ Log:Two performance optimizations in strategies. Added test. diff --git a/rstrategies.py b/rstrategies.py --- a/rstrategies.py

[pypy-commit] lang-smalltalk rstrategies: Cleaned up benchmarks.

2014-10-16 Thread anton_gulenko
Author: Anton Gulenko Branch: rstrategies Changeset: r1050:a65eca0466a1 Date: 2014-09-24 14:42 +0200 http://bitbucket.org/pypy/lang-smalltalk/changeset/a65eca0466a1/ Log:Cleaned up benchmarks. diff --git a/images/Squeak4.5-noBitBlt.changes b/images/Squeak4.5-noBitBlt.changes --- a/images/Sq

[pypy-commit] lang-smalltalk rstrategies: Added image_loaded indicator in objspace.

2014-10-16 Thread anton_gulenko
Author: Anton Gulenko Branch: rstrategies Changeset: r1052:1b0742051354 Date: 2014-09-24 16:43 +0200 http://bitbucket.org/pypy/lang-smalltalk/changeset/1b0742051354/ Log:Added image_loaded indicator in objspace. diff --git a/spyvm/objspace.py b/spyvm/objspace.py --- a/spyvm/objspace.py +++ b

[pypy-commit] lang-smalltalk rstrategies: Removed logparser script.

2014-10-16 Thread anton_gulenko
Author: Anton Gulenko Branch: rstrategies Changeset: r1057:872913009663 Date: 2014-10-16 16:56 +0200 http://bitbucket.org/pypy/lang-smalltalk/changeset/872913009663/ Log:Removed logparser script. diff --git a/rstrategies_logparser.py b/rstrategies_logparser.py deleted file mode 100644 --- a/

[pypy-commit] lang-smalltalk rstrategies: Closing the RSDL display after usage.

2014-10-16 Thread anton_gulenko
Author: Anton Gulenko Branch: rstrategies Changeset: r1047:be2ed404c997 Date: 2014-09-18 13:34 +0200 http://bitbucket.org/pypy/lang-smalltalk/changeset/be2ed404c997/ Log:Closing the RSDL display after usage. diff --git a/spyvm/display.py b/spyvm/display.py --- a/spyvm/display.py +++ b/spyvm/

[pypy-commit] lang-smalltalk rstrategies: Removed charactertable from regular objspace, moved to bootstrapped objspace for tests.

2014-10-16 Thread anton_gulenko
Author: Anton Gulenko Branch: rstrategies Changeset: r1051:22e577331561 Date: 2014-09-24 15:58 +0200 http://bitbucket.org/pypy/lang-smalltalk/changeset/22e577331561/ Log:Removed charactertable from regular objspace, moved to bootstrapped objspace for tests. Instantiating empty W_Point

[pypy-commit] lang-smalltalk rstrategies: Moved the storage logging facility into the rstrategies library (including log parser).

2014-10-16 Thread anton_gulenko
Author: Anton Gulenko Branch: rstrategies Changeset: r1054:40c39046883a Date: 2014-09-25 10:09 +0200 http://bitbucket.org/pypy/lang-smalltalk/changeset/40c39046883a/ Log:Moved the storage logging facility into the rstrategies library (including log parser). diff --git a/rstrategies.p

[pypy-commit] lang-smalltalk rstrategies: Enabled logging of storage-operations on image startup and object creation.

2014-10-16 Thread anton_gulenko
Author: Anton Gulenko Branch: rstrategies Changeset: r1055:de3e0bdda188 Date: 2014-09-25 11:31 +0200 http://bitbucket.org/pypy/lang-smalltalk/changeset/de3e0bdda188/ Log:Enabled logging of storage-operations on image startup and object creation. diff --git a/spyvm/model.py b/spyvm/mo

[pypy-commit] lang-smalltalk rstrategies: Fixed some RPython compiler errors.

2014-10-16 Thread anton_gulenko
Author: Anton Gulenko Branch: rstrategies Changeset: r1056:facac740262e Date: 2014-10-03 13:09 +0200 http://bitbucket.org/pypy/lang-smalltalk/changeset/facac740262e/ Log:Fixed some RPython compiler errors. diff --git a/rstrategies.py b/rstrategies.py --- a/rstrategies.py +++ b/rstrategies.py

[pypy-commit] extradoc extradoc: work on slides;

2014-10-16 Thread fijal
Author: Maciej Fijalkowski Branch: extradoc Changeset: r5434:6f568008b260 Date: 2014-10-16 17:02 +0200 http://bitbucket.org/pypy/extradoc/changeset/6f568008b260/ Log:work on slides; diff --git a/talk/pyconpl-2014/Makefile b/talk/pyconpl-2014/Makefile --- a/talk/pyconpl-2014/Makefile +++ b/ta

[pypy-commit] lang-smalltalk rstrategies: Pulled new rstrategies.py

2014-10-16 Thread anton_gulenko
Author: Anton Gulenko Branch: rstrategies Changeset: r1058:7a0ce39abc12 Date: 2014-10-16 17:17 +0200 http://bitbucket.org/pypy/lang-smalltalk/changeset/7a0ce39abc12/ Log:Pulled new rstrategies.py diff --git a/rstrategies.py b/rstrategies.py --- a/rstrategies.py +++ b/rstrategies.py @@ -116,1

[pypy-commit] pypy online-transforms: hg merge default

2014-10-16 Thread rlamy
Author: Ronan Lamy Branch: online-transforms Changeset: r73978:1bdebe826b62 Date: 2014-10-16 16:46 +0100 http://bitbucket.org/pypy/pypy/changeset/1bdebe826b62/ Log:hg merge default diff --git a/rpython/annotator/annrpython.py b/rpython/annotator/annrpython.py --- a/rpython/annotator/annrpyth

[pypy-commit] pypy online-transforms: kill unused _emulate_call()

2014-10-16 Thread rlamy
Author: Ronan Lamy Branch: online-transforms Changeset: r73977:cda7da667fa0 Date: 2014-10-15 23:35 +0100 http://bitbucket.org/pypy/pypy/changeset/cda7da667fa0/ Log:kill unused _emulate_call() diff --git a/rpython/annotator/unaryop.py b/rpython/annotator/unaryop.py --- a/rpython/annotator/una

[pypy-commit] pypy py3k: adapt 4e6dddc6d1ed & 688d9d295fc2 to py3

2014-10-16 Thread pjenvey
Author: Philip Jenvey Branch: py3k Changeset: r73982:6da0c1a2109a Date: 2014-10-16 16:50 -0700 http://bitbucket.org/pypy/pypy/changeset/6da0c1a2109a/ Log:adapt 4e6dddc6d1ed & 688d9d295fc2 to py3 diff --git a/lib-python/3/test/test_select.py b/lib-python/3/test/test_select.py --- a/lib-python

[pypy-commit] pypy py3k: adjust per the new pypy3 exe name

2014-10-16 Thread pjenvey
Author: Philip Jenvey Branch: py3k Changeset: r73981:5ac508b99502 Date: 2014-10-16 16:50 -0700 http://bitbucket.org/pypy/pypy/changeset/5ac508b99502/ Log:adjust per the new pypy3 exe name diff --git a/pypy/tool/release/test/test_package.py b/pypy/tool/release/test/test_package.py --- a/pypy

[pypy-commit] pypy bigint-with-int-ops: better tests for int comparisons

2014-10-16 Thread cfbolz
Author: Carl Friedrich Bolz Branch: bigint-with-int-ops Changeset: r73983:1118cad5d291 Date: 2014-10-16 23:39 +0200 http://bitbucket.org/pypy/pypy/changeset/1118cad5d291/ Log:better tests for int comparisons diff --git a/rpython/rlib/test/test_rbigint.py b/rpython/rlib/test/test_rbigint.py

[pypy-commit] pypy bigint-with-int-ops: generally improve test coverage

2014-10-16 Thread cfbolz
Author: Carl Friedrich Bolz Branch: bigint-with-int-ops Changeset: r73984:8b67154fe24d Date: 2014-10-17 08:50 +0200 http://bitbucket.org/pypy/pypy/changeset/8b67154fe24d/ Log:generally improve test coverage diff --git a/rpython/rlib/test/test_rbigint.py b/rpython/rlib/test/test_rbigint.py -

[pypy-commit] pypy default: merge bigint-with-int-ops

2014-10-16 Thread cfbolz
Author: Carl Friedrich Bolz Branch: Changeset: r73985:d5cec19910a1 Date: 2014-10-17 08:53 +0200 http://bitbucket.org/pypy/pypy/changeset/d5cec19910a1/ Log:merge bigint-with-int-ops this is only for the rbigint changes, leaving the branch open to at some point be able to do t