[pypy-commit] pypy jit-multilabel: avoiding confusion from rare hash collisions

2011-12-21 Thread hakanardo
Author: Hakan Ardo Branch: jit-multilabel Changeset: r50796:707ec0f104cd Date: 2011-12-21 11:44 +0100 http://bitbucket.org/pypy/pypy/changeset/707ec0f104cd/ Log:avoiding confusion from rare hash collisions diff --git a/pypy/jit/metainterp/history.py b/pypy/jit/metainterp/history.py --- a/pyp

[pypy-commit] pypy jit-multilabel: closing branch for merge

2011-12-21 Thread hakanardo
Author: Hakan Ardo Branch: jit-multilabel Changeset: r50797:67480607b18f Date: 2011-12-21 14:21 +0100 http://bitbucket.org/pypy/pypy/changeset/67480607b18f/ Log:closing branch for merge ___ pypy-commit mailing list pypy-commit@python.org http://mai

[pypy-commit] pypy default: Improve the test to also have ConstFloatLocs.

2011-12-21 Thread arigo
Author: Armin Rigo Branch: Changeset: r50799:da6ef5856827 Date: 2011-12-20 21:25 +0100 http://bitbucket.org/pypy/pypy/changeset/da6ef5856827/ Log:Improve the test to also have ConstFloatLocs. diff --git a/pypy/jit/backend/x86/test/test_jump.py b/pypy/jit/backend/x86/test/test_jump.py --- a

[pypy-commit] pypy default: merge heads

2011-12-21 Thread arigo
Author: Armin Rigo Branch: Changeset: r50802:fe3fd6bbfb02 Date: 2011-12-21 14:30 +0100 http://bitbucket.org/pypy/pypy/changeset/fe3fd6bbfb02/ Log:merge heads diff --git a/pypy/jit/backend/x86/test/test_jump.py b/pypy/jit/backend/x86/test/test_jump.py --- a/pypy/jit/backend/x86/test/test_ju

[pypy-commit] pypy counter-decay: close merged branch

2011-12-21 Thread arigo
Author: Armin Rigo Branch: counter-decay Changeset: r50801:bae684cd82fb Date: 2011-12-21 14:28 +0100 http://bitbucket.org/pypy/pypy/changeset/bae684cd82fb/ Log:close merged branch ___ pypy-commit mailing list pypy-commit@python.org http://mail.pyth

[pypy-commit] pypy default: copy logic from logger to show the printable_location in the graphs, but only if get_printable_location was provided

2011-12-21 Thread hakanardo
Author: Hakan Ardo Branch: Changeset: r50803:b1bccc7a772e Date: 2011-12-21 15:46 +0100 http://bitbucket.org/pypy/pypy/changeset/b1bccc7a772e/ Log:copy logic from logger to show the printable_location in the graphs, but only if get_printable_location was provided diff --git a/pypy/ji

[pypy-commit] pypy default: hg merge

2011-12-21 Thread hakanardo
Author: Hakan Ardo Branch: Changeset: r50804:628d03374f2e Date: 2011-12-21 15:54 +0100 http://bitbucket.org/pypy/pypy/changeset/628d03374f2e/ Log:hg merge diff --git a/pypy/jit/backend/x86/test/test_jump.py b/pypy/jit/backend/x86/test/test_jump.py --- a/pypy/jit/backend/x86/test/test_jump.

[pypy-commit] pypy default: fix.

2011-12-21 Thread arigo
Author: Armin Rigo Branch: Changeset: r50806:2261c6bb4a58 Date: 2011-12-21 16:15 +0100 http://bitbucket.org/pypy/pypy/changeset/2261c6bb4a58/ Log:fix. diff --git a/pypy/jit/backend/x86/jump.py b/pypy/jit/backend/x86/jump.py --- a/pypy/jit/backend/x86/jump.py +++ b/pypy/jit/backend/x86/jump.

[pypy-commit] pypy default: A failing test, showing an issue that only occurs after translation.

2011-12-21 Thread arigo
Author: Armin Rigo Branch: Changeset: r50805:d70f132b92fa Date: 2011-12-21 16:13 +0100 http://bitbucket.org/pypy/pypy/changeset/d70f132b92fa/ Log:A failing test, showing an issue that only occurs after translation. diff --git a/pypy/jit/backend/x86/test/test_jump.py b/pypy/jit/backend/x86/

[pypy-commit] pypy default: merge heads

2011-12-21 Thread arigo
Author: Armin Rigo Branch: Changeset: r50807:d73152d7b1ad Date: 2011-12-21 16:15 +0100 http://bitbucket.org/pypy/pypy/changeset/d73152d7b1ad/ Log:merge heads diff --git a/pypy/jit/metainterp/compile.py b/pypy/jit/metainterp/compile.py --- a/pypy/jit/metainterp/compile.py +++ b/pypy/jit/meta

[pypy-commit] pypy numpy-faster-setslice: Implement fast slice setting using memcpy

2011-12-21 Thread fijal
Author: Maciej Fijalkowski Branch: numpy-faster-setslice Changeset: r50808:b0190f46f44c Date: 2011-12-21 20:55 +0200 http://bitbucket.org/pypy/pypy/changeset/b0190f46f44c/ Log:Implement fast slice setting using memcpy diff --git a/pypy/module/micronumpy/interp_iter.py b/pypy/module/micronum

[pypy-commit] pypy numpy-faster-setslice: share code between copy and setslice

2011-12-21 Thread fijal
Author: Maciej Fijalkowski Branch: numpy-faster-setslice Changeset: r50809:2961d5daa1d1 Date: 2011-12-21 21:46 +0200 http://bitbucket.org/pypy/pypy/changeset/2961d5daa1d1/ Log:share code between copy and setslice diff --git a/pypy/module/micronumpy/interp_numarray.py b/pypy/module/micronump

[pypy-commit] pypy default: Merge numpy-faster-setslice, uses memcpy for setslice operations if possible

2011-12-21 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r50810:441db5bbe505 Date: 2011-12-21 21:51 +0200 http://bitbucket.org/pypy/pypy/changeset/441db5bbe505/ Log:Merge numpy-faster-setslice, uses memcpy for setslice operations if possible diff --git a/pypy/module/micronumpy/interp_iter.py

[pypy-commit] pypy numpy-faster-setslice: close merged branch

2011-12-21 Thread fijal
Author: Maciej Fijalkowski Branch: numpy-faster-setslice Changeset: r50811:6b116d5dea60 Date: 2011-12-21 21:54 +0200 http://bitbucket.org/pypy/pypy/changeset/6b116d5dea60/ Log:close merged branch ___ pypy-commit mailing list pypy-commit@python.org

[pypy-commit] pypy default: Issue971: multiprocessing: Use network byte order to send the length of strings.

2011-12-21 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: Changeset: r50812:60129de702dc Date: 2011-12-21 21:25 +0100 http://bitbucket.org/pypy/pypy/changeset/60129de702dc/ Log:Issue971: multiprocessing: Use network byte order to send the length of strings. diff --git a/pypy/module/_multiprocessing/inte

[pypy-commit] pypy jit-improve-nested-loops: Allow the bidge in cases like test_virtual.test_nested_loops to jump to the top of the innerloop instead of traceing a full iteration of it

2011-12-21 Thread hakanardo
Author: Hakan Ardo Branch: jit-improve-nested-loops Changeset: r50813:3c0b32210942 Date: 2011-12-21 21:36 +0100 http://bitbucket.org/pypy/pypy/changeset/3c0b32210942/ Log:Allow the bidge in cases like test_virtual.test_nested_loops to jump to the top of the innerloop instead of tracei

[pypy-commit] pypy default: Attempt to fix translation

2011-12-21 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: Changeset: r50814:d94baec282bc Date: 2011-12-21 22:44 +0100 http://bitbucket.org/pypy/pypy/changeset/d94baec282bc/ Log:Attempt to fix translation diff --git a/pypy/module/_multiprocessing/interp_connection.py b/pypy/module/_multiprocessing/interp_connec

[pypy-commit] pypy py3k: Implement imp.source_from_cache()

2011-12-21 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3k Changeset: r50815:221a0077614d Date: 2011-12-21 23:00 +0100 http://bitbucket.org/pypy/pypy/changeset/221a0077614d/ Log:Implement imp.source_from_cache() Kind of... we still use the old .py/pyc scheme. diff --git a/pypy/module/imp/__init__.py

[pypy-commit] pypy py3k: Fix almost all tests in module/_sre

2011-12-21 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3k Changeset: r50816:dce4b22308da Date: 2011-12-22 00:20 +0100 http://bitbucket.org/pypy/pypy/changeset/dce4b22308da/ Log:Fix almost all tests in module/_sre diff --git a/lib_pypy/array.py b/lib_pypy/array.py --- a/lib_pypy/array.py +++ b/lib_pypy/array

[pypy-commit] pypy py3k: set.__repr__ uses the new set literal syntax: {1, 2, 3}

2011-12-21 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3k Changeset: r50817:ceb5f49d0eeb Date: 2011-12-22 00:39 +0100 http://bitbucket.org/pypy/pypy/changeset/ceb5f49d0eeb/ Log:set.__repr__ uses the new set literal syntax: {1, 2, 3} diff --git a/pypy/objspace/std/setobject.py b/pypy/objspace/std/setobject.p

[pypy-commit] extradoc extradoc: draft text for a pycon blogspot

2011-12-21 Thread alex_gaynor
Author: Alex Gaynor Branch: extradoc Changeset: r3988:f1bf364cca09 Date: 2011-12-21 20:49 -0600 http://bitbucket.org/pypy/extradoc/changeset/f1bf364cca09/ Log:draft text for a pycon blogspot diff --git a/blog/draft/pycon-2012-teaser.rst b/blog/draft/pycon-2012-teaser.rst new file mode 100644

[pypy-commit] extradoc extradoc: note the authors of each talk

2011-12-21 Thread alex_gaynor
Author: Alex Gaynor Branch: extradoc Changeset: r3989:913e169481be Date: 2011-12-21 21:06 -0600 http://bitbucket.org/pypy/extradoc/changeset/913e169481be/ Log:note the authors of each talk diff --git a/blog/draft/pycon-2012-teaser.rst b/blog/draft/pycon-2012-teaser.rst --- a/blog/draft/pycon

[pypy-commit] pypy default: catch all the needed memoryerror conditions in str.replace

2011-12-21 Thread alex_gaynor
Author: Alex Gaynor Branch: Changeset: r50818:072b5317cc0f Date: 2011-12-21 21:14 -0600 http://bitbucket.org/pypy/pypy/changeset/072b5317cc0f/ Log:catch all the needed memoryerror conditions in str.replace diff --git a/pypy/objspace/std/stringobject.py b/pypy/objspace/std/stringobject.py -

[pypy-commit] pypy default: merged upstream

2011-12-21 Thread alex_gaynor
Author: Alex Gaynor Branch: Changeset: r50819:bb7e012d070a Date: 2011-12-21 21:18 -0600 http://bitbucket.org/pypy/pypy/changeset/bb7e012d070a/ Log:merged upstream diff --git a/pypy/module/_multiprocessing/interp_connection.py b/pypy/module/_multiprocessing/interp_connection.py --- a/pypy/m

[pypy-commit] pypy py3k: simplify callable() code and fix a bug in it, None is not the same as false :)

2011-12-21 Thread alex_gaynor
Author: Alex Gaynor Branch: py3k Changeset: r50820:fad1ecae7c0d Date: 2011-12-21 21:35 -0600 http://bitbucket.org/pypy/pypy/changeset/fad1ecae7c0d/ Log:simplify callable() code and fix a bug in it, None is not the same as false :) diff --git a/pypy/interpreter/baseobjspace.py b/pypy/

[pypy-commit] pypy py3k: make sure filter(x, non_callable) raises immediately, not on the first call to __next__

2011-12-21 Thread alex_gaynor
Author: Alex Gaynor Branch: py3k Changeset: r50821:141ccdc2c4fb Date: 2011-12-21 22:09 -0600 http://bitbucket.org/pypy/pypy/changeset/141ccdc2c4fb/ Log:make sure filter(x, non_callable) raises immediately, not on the first call to __next__ diff --git a/pypy/module/__builtin__/app_fun