[pypy-commit] pypy default: test and fix for id(complex) when imag < 0

2013-03-11 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r62288:18d3311a2498 Date: 2013-03-11 05:29 -0400 http://bitbucket.org/pypy/pypy/changeset/18d3311a2498/ Log:test and fix for id(complex) when imag < 0 diff --git a/pypy/objspace/std/complexobject.py b/pypy/objspace/std/complexobject.py --- a/pypy/obj

[pypy-commit] pypy default: another attempt at dotviewer path search

2013-03-11 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r62289:889d20441589 Date: 2013-03-11 06:06 -0400 http://bitbucket.org/pypy/pypy/changeset/889d20441589/ Log:another attempt at dotviewer path search diff --git a/dotviewer/graphclient.py b/dotviewer/graphclient.py --- a/dotviewer/graphclient.py +++ b/

[pypy-commit] pypy jitframe-on-heap: fix for build_frame_realloc_slowpath and _restore_exception

2013-03-11 Thread bivab
Author: David Schneider Branch: jitframe-on-heap Changeset: r62290:9c6fa4ed86cc Date: 2013-03-11 11:27 +0100 http://bitbucket.org/pypy/pypy/changeset/9c6fa4ed86cc/ Log:fix for build_frame_realloc_slowpath and _restore_exception diff --git a/rpython/jit/backend/arm/assembler.py b/rpython/jit

[pypy-commit] lang-smalltalk default: fixed generation replacing the set with a dictionary

2013-03-11 Thread lwassermann
Author: Lars Wassermann Branch: Changeset: r164:ac2243dae585 Date: 2013-03-11 11:48 +0100 http://bitbucket.org/pypy/lang-smalltalk/changeset/ac2243dae585/ Log:fixed generation replacing the set with a dictionary diff --git a/spyvm/interpreter.py b/spyvm/interpreter.py --- a/spyvm/interprete

[pypy-commit] lang-smalltalk bitblt: create python-bitblt branch

2013-03-11 Thread timfel
Author: Tim Felgentreff Branch: bitblt Changeset: r165:b1dfe51b9b09 Date: 2013-03-11 13:30 +0100 http://bitbucket.org/pypy/lang-smalltalk/changeset/b1dfe51b9b09/ Log:create python-bitblt branch diff --git a/images/mini.image b/images/mini.image index 4e0739b0aa769798ae904fee0eff0b0eac8c8368

[pypy-commit] pypy jitframe-on-heap: disable singlefloat on ARMHF

2013-03-11 Thread bivab
Author: David Schneider Branch: jitframe-on-heap Changeset: r62291:0af8d7b9a125 Date: 2013-03-11 17:54 +0200 http://bitbucket.org/pypy/pypy/changeset/0af8d7b9a125/ Log:disable singlefloat on ARMHF diff --git a/rpython/jit/backend/arm/runner.py b/rpython/jit/backend/arm/runner.py --- a/rpyth

[pypy-commit] pypy extregistry-refactor: Remove unused _condition_ handling in ExtRegistryEntry

2013-03-11 Thread rlamy
Author: Ronan Lamy Branch: extregistry-refactor Changeset: r62292:ffab5deb828b Date: 2013-03-11 16:07 + http://bitbucket.org/pypy/pypy/changeset/ffab5deb828b/ Log:Remove unused _condition_ handling in ExtRegistryEntry diff --git a/rpython/rtyper/extregistry.py b/rpython/rtyper/extregistr

[pypy-commit] pypy extregistry-refactor: kill unused ClassFamily.conditionals

2013-03-11 Thread rlamy
Author: Ronan Lamy Branch: extregistry-refactor Changeset: r62293:d237feec99cf Date: 2013-03-11 16:22 + http://bitbucket.org/pypy/pypy/changeset/d237feec99cf/ Log:kill unused ClassFamily.conditionals diff --git a/rpython/rtyper/extregistry.py b/rpython/rtyper/extregistry.py --- a/rpython

[pypy-commit] pypy extregistry-refactor: kill ClassFamily, store Entries directly in the registries

2013-03-11 Thread rlamy
Author: Ronan Lamy Branch: extregistry-refactor Changeset: r62294:4bc2b9dcd4a1 Date: 2013-03-11 17:43 + http://bitbucket.org/pypy/pypy/changeset/4bc2b9dcd4a1/ Log:kill ClassFamily, store Entries directly in the registries diff --git a/rpython/rtyper/extregistry.py b/rpython/rtyper/extreg

[pypy-commit] pypy extregistry-refactor: kill useless config parameters from extregistry public interface

2013-03-11 Thread rlamy
Author: Ronan Lamy Branch: extregistry-refactor Changeset: r62295:21ceb561baa3 Date: 2013-03-11 19:21 + http://bitbucket.org/pypy/pypy/changeset/21ceb561baa3/ Log:kill useless config parameters from extregistry public interface diff --git a/rpython/rtyper/extregistry.py b/rpython/rtyper/

[pypy-commit] pypy extregistry-refactor: kill unused SomeExternalObject

2013-03-11 Thread rlamy
Author: Ronan Lamy Branch: extregistry-refactor Changeset: r62296:969996d0f71b Date: 2013-03-11 19:43 + http://bitbucket.org/pypy/pypy/changeset/969996d0f71b/ Log:kill unused SomeExternalObject diff --git a/rpython/annotator/binaryop.py b/rpython/annotator/binaryop.py --- a/rpython/annot

[pypy-commit] pypy default: cpyext: Correctly invalidate the type cache when tp_dict is updated directly.

2013-03-11 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: Changeset: r62297:4e520ab34e44 Date: 2013-03-11 22:33 +0100 http://bitbucket.org/pypy/pypy/changeset/4e520ab34e44/ Log:cpyext: Correctly invalidate the type cache when tp_dict is updated directly. Fixes issue1106. diff --git a/pypy/module/cpyext/

[pypy-commit] pypy default: unused error message in sqlite

2013-03-11 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r62298:7d7942e84071 Date: 2013-03-11 16:56 -0400 http://bitbucket.org/pypy/pypy/changeset/7d7942e84071/ Log:unused error message in sqlite diff --git a/lib_pypy/_sqlite3.py b/lib_pypy/_sqlite3.py --- a/lib_pypy/_sqlite3.py +++ b/lib_pypy/_sqlite3.py @

[pypy-commit] pypy default: re-enable the keys fastpath: the DictStrategy method was renamed to w_keys a

2013-03-11 Thread pjenvey
Author: Philip Jenvey Branch: Changeset: r62299:977a0cb12965 Date: 2013-03-11 15:15 -0700 http://bitbucket.org/pypy/pypy/changeset/977a0cb12965/ Log:re-enable the keys fastpath: the DictStrategy method was renamed to w_keys a while back diff --git a/pypy/objspace/std/dictproxyobject

[pypy-commit] pypy py3k: merge default

2013-03-11 Thread pjenvey
Author: Philip Jenvey Branch: py3k Changeset: r62300:0d2d672668f3 Date: 2013-03-11 15:19 -0700 http://bitbucket.org/pypy/pypy/changeset/0d2d672668f3/ Log:merge default diff --git a/dotviewer/graphclient.py b/dotviewer/graphclient.py --- a/dotviewer/graphclient.py +++ b/dotviewer/graphclient.

[pypy-commit] pypy default: this workaround no longer necessary

2013-03-11 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r62301:e8af23629e1f Date: 2013-03-11 21:09 -0400 http://bitbucket.org/pypy/pypy/changeset/e8af23629e1f/ Log:this workaround no longer necessary diff --git a/pypy/objspace/std/dictmultiobject.py b/pypy/objspace/std/dictmultiobject.py --- a/pypy/objspa

[pypy-commit] pypy default: sqlite: only call readahead if there is another row

2013-03-11 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r62302:de53c17f0572 Date: 2013-03-11 21:13 -0400 http://bitbucket.org/pypy/pypy/changeset/de53c17f0572/ Log:sqlite: only call readahead if there is another row diff --git a/lib_pypy/_sqlite3.py b/lib_pypy/_sqlite3.py --- a/lib_pypy/_sqlite3.py +++ b/l

[pypy-commit] pypy py3k: pep3131: support non-ascii identifiers. thanks amaury for most of the tokenizer

2013-03-11 Thread pjenvey
Author: Philip Jenvey Branch: py3k Changeset: r62303:78c50cd0ed82 Date: 2013-03-11 18:37 -0700 http://bitbucket.org/pypy/pypy/changeset/78c50cd0ed82/ Log:pep3131: support non-ascii identifiers. thanks amaury for most of the tokenizer work diff --git a/pypy/interpreter/astcompiler/ast

[pypy-commit] pypy py3k: dictproxy works against utf-8 encoded identifiers from type's dict_w

2013-03-11 Thread pjenvey
Author: Philip Jenvey Branch: py3k Changeset: r62304:c03956a6dd22 Date: 2013-03-11 18:39 -0700 http://bitbucket.org/pypy/pypy/changeset/c03956a6dd22/ Log:dictproxy works against utf-8 encoded identifiers from type's dict_w diff --git a/pypy/objspace/std/dictproxyobject.py b/pypy/objspace/st

[pypy-commit] pypy py3k: normalize all AST identifiers to NFKC

2013-03-11 Thread pjenvey
Author: Philip Jenvey Branch: py3k Changeset: r62305:c05bd31e3342 Date: 2013-03-11 18:39 -0700 http://bitbucket.org/pypy/pypy/changeset/c05bd31e3342/ Log:normalize all AST identifiers to NFKC diff --git a/pypy/interpreter/astcompiler/astbuilder.py b/pypy/interpreter/astcompiler/astbuilder.p

[pypy-commit] pypy default: test/fix for sqlite cursor iteration in corner cases

2013-03-11 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r62306:930d2954c777 Date: 2013-03-12 00:05 -0400 http://bitbucket.org/pypy/pypy/changeset/930d2954c777/ Log:test/fix for sqlite cursor iteration in corner cases diff --git a/lib_pypy/_sqlite3.py b/lib_pypy/_sqlite3.py --- a/lib_pypy/_sqlite3.py +++ b/