[pypy-commit] pypy ufuncapi: cleanup, add failing test that mimics numpy.linalg.inv's signature

2014-10-10 Thread mattip
Author: mattip Branch: ufuncapi Changeset: r73883:0e380b57db19 Date: 2014-10-10 17:05 +0300 http://bitbucket.org/pypy/pypy/changeset/0e380b57db19/ Log:cleanup, add failing test that mimics numpy.linalg.inv's signature showing there is much more to be done to finish this API diff --gi

[pypy-commit] pypy ufuncapi: pep8

2014-10-10 Thread mattip
Author: mattip Branch: ufuncapi Changeset: r73880:b0409e6b4887 Date: 2014-10-07 22:57 +0300 http://bitbucket.org/pypy/pypy/changeset/b0409e6b4887/ Log:pep8 diff --git a/pypy/module/cpyext/ndarrayobject.py b/pypy/module/cpyext/ndarrayobject.py --- a/pypy/module/cpyext/ndarrayobject.py +++ b/

[pypy-commit] pypy ufuncapi: add kw support to generic ufuncs, lay groundwork for kw support in all ufuncs

2014-10-10 Thread mattip
Author: mattip Branch: ufuncapi Changeset: r73881:8c3df8a4ea5f Date: 2014-10-08 17:53 +0300 http://bitbucket.org/pypy/pypy/changeset/8c3df8a4ea5f/ Log:add kw support to generic ufuncs, lay groundwork for kw support in all ufuncs diff --git a/pypy/module/micronumpy/boxes.py b/pypy/mod

[pypy-commit] pypy ufuncapi: merge default into branch

2014-10-10 Thread mattip
Author: mattip Branch: ufuncapi Changeset: r73884:0587bee36e87 Date: 2014-10-10 17:07 +0300 http://bitbucket.org/pypy/pypy/changeset/0587bee36e87/ Log:merge default into branch diff too long, truncating to 2000 out of 10352 lines diff --git a/LICENSE b/LICENSE --- a/LICENSE +++ b/LICENSE @@

[pypy-commit] pypy ufuncapi: rename for numpy compatability

2014-10-10 Thread mattip
Author: mattip Branch: ufuncapi Changeset: r73882:055731d00921 Date: 2014-10-08 17:53 +0300 http://bitbucket.org/pypy/pypy/changeset/055731d00921/ Log:rename for numpy compatability diff --git a/pypy/module/cpyext/ndarrayobject.py b/pypy/module/cpyext/ndarrayobject.py --- a/pypy/module/cpye

[pypy-commit] pypy default: Fix an obscure case

2014-10-10 Thread arigo
Author: Armin Rigo Branch: Changeset: r73885:c6df80a771d4 Date: 2014-10-10 16:15 +0200 http://bitbucket.org/pypy/pypy/changeset/c6df80a771d4/ Log:Fix an obscure case diff --git a/rpython/jit/metainterp/optimizeopt/virtualize.py b/rpython/jit/metainterp/optimizeopt/virtualize.py --- a/rpyth

[pypy-commit] pypy default: Fix for RPython code like '[0] * n', which was incorrectly jitted with

2014-10-10 Thread arigo
Author: Armin Rigo Branch: Changeset: r73886:6f51f0dc9cb0 Date: 2014-10-10 18:09 +0200 http://bitbucket.org/pypy/pypy/changeset/6f51f0dc9cb0/ Log:Fix for RPython code like '[0] * n', which was incorrectly jitted with 'new_array', i.e. the version that doesn't fill the result with

[pypy-commit] pypy default: Untested: fix a performance XXX

2014-10-10 Thread arigo
Author: Armin Rigo Branch: Changeset: r73887:372d7d13aed2 Date: 2014-10-10 18:25 +0200 http://bitbucket.org/pypy/pypy/changeset/372d7d13aed2/ Log:Untested: fix a performance XXX diff --git a/rpython/jit/backend/arm/opassembler.py b/rpython/jit/backend/arm/opassembler.py --- a/rpython/jit/b

[pypy-commit] pypy var-in-Some: update whatsnew

2014-10-10 Thread rlamy
Author: Ronan Lamy Branch: var-in-Some Changeset: r73888:cf0d3249948d Date: 2014-10-10 17:27 +0100 http://bitbucket.org/pypy/pypy/changeset/cf0d3249948d/ Log:update whatsnew diff --git a/pypy/doc/whatsnew-head.rst b/pypy/doc/whatsnew-head.rst --- a/pypy/doc/whatsnew-head.rst +++ b/pypy/doc/w

[pypy-commit] pypy default: Merge branch 'var-in-Some'

2014-10-10 Thread rlamy
Author: Ronan Lamy Branch: Changeset: r73889:46914a24fcd4 Date: 2014-10-10 17:30 +0100 http://bitbucket.org/pypy/pypy/changeset/46914a24fcd4/ Log:Merge branch 'var-in-Some' Store annotations on the Variable objects, rather than in a big dict. Introduce a new framework for do

[pypy-commit] pypy var-in-Some: close branch

2014-10-10 Thread rlamy
Author: Ronan Lamy Branch: var-in-Some Changeset: r73890:c6314683ba8d Date: 2014-10-10 17:32 +0100 http://bitbucket.org/pypy/pypy/changeset/c6314683ba8d/ Log:close branch ___ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/m

[pypy-commit] pypy inline-earlier: extract some rtyper specific code into a separate method

2014-10-10 Thread rlamy
Author: Ronan Lamy Branch: inline-earlier Changeset: r73892:655da501d2b3 Date: 2014-10-09 03:58 +0100 http://bitbucket.org/pypy/pypy/changeset/655da501d2b3/ Log:extract some rtyper specific code into a separate method diff --git a/rpython/translator/backendopt/inline.py b/rpython/translator

[pypy-commit] pypy inline-earlier: deJavaise r/t/b/inline.py

2014-10-10 Thread rlamy
Author: Ronan Lamy Branch: inline-earlier Changeset: r73894:4834be503b4d Date: 2014-10-10 05:20 +0100 http://bitbucket.org/pypy/pypy/changeset/4834be503b4d/ Log:deJavaise r/t/b/inline.py diff --git a/rpython/memory/gctransform/transform.py b/rpython/memory/gctransform/transform.py --- a/rpy

[pypy-commit] pypy inline-earlier: move search_for_calls() out of BaseInliner, since it's only used by Inliner

2014-10-10 Thread rlamy
Author: Ronan Lamy Branch: inline-earlier Changeset: r73891:44de8be2cd36 Date: 2014-10-09 02:55 +0100 http://bitbucket.org/pypy/pypy/changeset/44de8be2cd36/ Log:move search_for_calls() out of BaseInliner, since it's only used by Inliner diff --git a/rpython/translator/backendopt/inli

[pypy-commit] pypy inline-earlier: kill unused class CanRaise

2014-10-10 Thread rlamy
Author: Ronan Lamy Branch: inline-earlier Changeset: r73893:c602f802c63f Date: 2014-10-10 05:03 +0100 http://bitbucket.org/pypy/pypy/changeset/c602f802c63f/ Log:kill unused class CanRaise diff --git a/rpython/translator/backendopt/inline.py b/rpython/translator/backendopt/inline.py --- a/rp

[pypy-commit] pypy default: oups

2014-10-10 Thread arigo
Author: Armin Rigo Branch: Changeset: r73895:466c7d4301d8 Date: 2014-10-10 18:55 +0200 http://bitbucket.org/pypy/pypy/changeset/466c7d4301d8/ Log:oups diff --git a/rpython/translator/c/src/int.h b/rpython/translator/c/src/int.h --- a/rpython/translator/c/src/int.h +++ b/rpython/translator/c

[pypy-commit] pypy default: Fix the test

2014-10-10 Thread arigo
Author: Armin Rigo Branch: Changeset: r73896:48ee7cfde056 Date: 2014-10-10 19:39 +0200 http://bitbucket.org/pypy/pypy/changeset/48ee7cfde056/ Log:Fix the test diff --git a/rpython/jit/metainterp/test/test_tracingopts.py b/rpython/jit/metainterp/test/test_tracingopts.py --- a/rpython/jit/me

[pypy-commit] pypy.org extradoc: Remove the links "September only: double donations!"

2014-10-10 Thread arigo
Author: Armin Rigo Branch: extradoc Changeset: r547:465e28f2fb28 Date: 2014-10-10 19:59 +0200 http://bitbucket.org/pypy/pypy.org/changeset/465e28f2fb28/ Log:Remove the links "September only: double donations!" diff --git a/don1.html b/don1.html --- a/don1.html +++ b/don1.html @@ -20,7 +20,6

[pypy-commit] pypy default: Merged in catseye/pypy (pull request #284)

2014-10-10 Thread arigo
Author: Armin Rigo Branch: Changeset: r73898:e242534d86cb Date: 2014-10-10 20:50 +0200 http://bitbucket.org/pypy/pypy/changeset/e242534d86cb/ Log:Merged in catseye/pypy (pull request #284) The code in 'py' and '_pytest' is also under the MIT license. diff --git a/LICENSE b/LICENSE

[pypy-commit] pypy default: The code in 'py' and '_pytest' is also under the MIT license.

2014-10-10 Thread catseye
Author: Chris Pressey Branch: Changeset: r73897:933092cbcef7 Date: 2014-10-10 13:32 +0100 http://bitbucket.org/pypy/pypy/changeset/933092cbcef7/ Log:The code in 'py' and '_pytest' is also under the MIT license. diff --git a/LICENSE b/LICENSE --- a/LICENSE +++ b/LICENSE @@ -3,8 +3,8 @@ Ex

[pypy-commit] cffi methane/homebrew-makes-symlink-for-current-versi-1412966022079: Homebrew makes symlink for current version in `/usr/local/opt`.

2014-10-10 Thread methane
Author: Naoki INADA Branch: methane/homebrew-makes-symlink-for-current-versi-1412966022079 Changeset: r1569:c3a7ec53ea6f Date: 2014-10-10 18:33 + http://bitbucket.org/cffi/cffi/changeset/c3a7ec53ea6f/ Log:Homebrew makes symlink for current version in `/usr/local/opt`. diff --git a/doc/so

[pypy-commit] cffi default: Merge this to default too

2014-10-10 Thread arigo
Author: Armin Rigo Branch: Changeset: r1571:dd050d62ca8e Date: 2014-10-10 20:56 +0200 http://bitbucket.org/cffi/cffi/changeset/dd050d62ca8e/ Log:Merge this to default too diff --git a/doc/source/index.rst b/doc/source/index.rst --- a/doc/source/index.rst +++ b/doc/source/index.rst @@ -150,8

[pypy-commit] cffi release-0.8: Merged in methane/cffi/methane/homebrew-makes-symlink-for-current-versi-1412966022079 (pull request #49)

2014-10-10 Thread arigo
Author: Armin Rigo Branch: release-0.8 Changeset: r1570:897d690a91e5 Date: 2014-10-10 20:55 +0200 http://bitbucket.org/cffi/cffi/changeset/897d690a91e5/ Log:Merged in methane/cffi/methane/homebrew-makes-symlink-for-current- versi-1412966022079 (pull request #49) Homebrew make

[pypy-commit] pypy default: merge ClassesPBCRepr and AbstractClassesPBCRepr

2014-10-10 Thread rlamy
Author: Ronan Lamy Branch: Changeset: r73899:adb060f6288a Date: 2014-10-11 02:04 +0100 http://bitbucket.org/pypy/pypy/changeset/adb060f6288a/ Log:merge ClassesPBCRepr and AbstractClassesPBCRepr diff --git a/rpython/rtyper/lltypesystem/rpbc.py b/rpython/rtyper/lltypesystem/rpbc.py --- a/rpy

[pypy-commit] pypy default: fix this test on 32bit

2014-10-10 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r73900:25e3b114c5ab Date: 2014-10-10 21:29 -0400 http://bitbucket.org/pypy/pypy/changeset/25e3b114c5ab/ Log:fix this test on 32bit diff --git a/pypy/module/micronumpy/test/test_arrayops.py b/pypy/module/micronumpy/test/test_arrayops.py --- a/pypy/mod