[pypy-commit] pypy numpypy-complex2: numpy (python pytest -A ) fails test_complex_math

2012-09-04 Thread mattip
Author: mattip Branch: numpypy-complex2 Changeset: r57138:ec72b6e18ca0 Date: 2012-09-05 03:59 +0300 http://bitbucket.org/pypy/pypy/changeset/ec72b6e18ca0/ Log:numpy (python pytest -A ) fails test_complex_math diff --git a/pypy/module/micronumpy/test/complex_testcases.txt b/pypy/module/micro

[pypy-commit] pypy sepcomp2: Add a failing test about passing exception between modules.

2012-09-04 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: sepcomp2 Changeset: r57137:60366c1af468 Date: 2012-04-03 00:20 +0200 http://bitbucket.org/pypy/pypy/changeset/60366c1af468/ Log:Add a failing test about passing exception between modules. ExceptionTransform should be shared. diff --git a/pypy/tran

[pypy-commit] pypy remove-PYPY_NOT_MAIN_FILE: Split thread.h into header and implementation files.

2012-09-04 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: remove-PYPY_NOT_MAIN_FILE Changeset: r57129:50181ffdc2af Date: 2012-07-21 22:58 +0200 http://bitbucket.org/pypy/pypy/changeset/50181ffdc2af/ Log:Split thread.h into header and implementation files. diff --git a/pypy/module/cpyext/api.py b/pypy/module/cpye

[pypy-commit] pypy remove-PYPY_NOT_MAIN_FILE: Split signals.h into header and implementation files

2012-09-04 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: remove-PYPY_NOT_MAIN_FILE Changeset: r57135:a8f8900bef79 Date: 2012-09-04 22:45 +0200 http://bitbucket.org/pypy/pypy/changeset/a8f8900bef79/ Log:Split signals.h into header and implementation files diff --git a/pypy/module/signal/interp_signal.py b/pypy/

[pypy-commit] pypy remove-PYPY_NOT_MAIN_FILE: Split mem.h and mem.c

2012-09-04 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: remove-PYPY_NOT_MAIN_FILE Changeset: r57133:bd54df13dcab Date: 2012-07-22 19:14 +0200 http://bitbucket.org/pypy/pypy/changeset/bd54df13dcab/ Log:Split mem.h and mem.c diff --git a/pypy/translator/c/gc.py b/pypy/translator/c/gc.py --- a/pypy/translator/c/g

[pypy-commit] pypy remove-PYPY_NOT_MAIN_FILE: Move debug_alloc.h into allocator.[ch]

2012-09-04 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: remove-PYPY_NOT_MAIN_FILE Changeset: r57132:d65337bf621c Date: 2012-07-22 09:30 +0200 http://bitbucket.org/pypy/pypy/changeset/d65337bf621c/ Log:Move debug_alloc.h into allocator.[ch] diff --git a/pypy/translator/c/src/allocator.c b/pypy/translator/c/src

[pypy-commit] pypy remove-PYPY_NOT_MAIN_FILE: Split asm*.h in header and implementation files

2012-09-04 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: remove-PYPY_NOT_MAIN_FILE Changeset: r57131:751d2acf21c5 Date: 2012-07-22 00:02 +0200 http://bitbucket.org/pypy/pypy/changeset/751d2acf21c5/ Log:Split asm*.h in header and implementation files diff --git a/pypy/translator/c/genc.py b/pypy/translator/c/gen

[pypy-commit] pypy remove-PYPY_NOT_MAIN_FILE: Move allocator.c out of headers

2012-09-04 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: remove-PYPY_NOT_MAIN_FILE Changeset: r57130:34bb1606fec3 Date: 2012-07-21 23:14 +0200 http://bitbucket.org/pypy/pypy/changeset/34bb1606fec3/ Log:Move allocator.c out of headers diff --git a/pypy/translator/c/genc.py b/pypy/translator/c/genc.py --- a/pypy/

[pypy-commit] pypy py3k: split unicode_encode_utf_8 in the same way as str_decode_utf_8

2012-09-04 Thread antocuni
Author: Antonio Cuni Branch: py3k Changeset: r57128:7edaa3448803 Date: 2012-09-04 16:31 +0200 http://bitbucket.org/pypy/pypy/changeset/7edaa3448803/ Log:split unicode_encode_utf_8 in the same way as str_decode_utf_8 diff --git a/pypy/rlib/runicode.py b/pypy/rlib/runicode.py --- a/pypy/rlib/r

[pypy-commit] pypy default: Update for cffi/cffi 41a7f979ae19.

2012-09-04 Thread arigo
Author: Armin Rigo Branch: Changeset: r57127:3ab2dfb42c1f Date: 2012-09-04 15:32 +0200 http://bitbucket.org/pypy/pypy/changeset/3ab2dfb42c1f/ Log:Update for cffi/cffi 41a7f979ae19. diff --git a/pypy/module/_cffi_backend/__init__.py b/pypy/module/_cffi_backend/__init__.py --- a/pypy/module/

[pypy-commit] cffi default: Add ffi.CData and ffi.CType.

2012-09-04 Thread arigo
Author: Armin Rigo Branch: Changeset: r917:41a7f979ae19 Date: 2012-09-04 15:26 +0200 http://bitbucket.org/cffi/cffi/changeset/41a7f979ae19/ Log:Add ffi.CData and ffi.CType. diff --git a/c/_cffi_backend.c b/c/_cffi_backend.c --- a/c/_cffi_backend.c +++ b/c/_cffi_backend.c @@ -4105,6 +4105,12

[pypy-commit] pypy numpy-refactor: copy paste more ops

2012-09-04 Thread fijal
Author: Maciej Fijalkowski Branch: numpy-refactor Changeset: r57120:c5fdab36c87d Date: 2012-09-04 12:58 +0200 http://bitbucket.org/pypy/pypy/changeset/c5fdab36c87d/ Log:copy paste more ops diff --git a/pypy/module/micronumpy/interp_numarray.py b/pypy/module/micronumpy/interp_numarray.py ---

[pypy-commit] pypy numpy-refactor: scalars in ufuncs

2012-09-04 Thread fijal
Author: Maciej Fijalkowski Branch: numpy-refactor Changeset: r57121:527742bb4035 Date: 2012-09-04 13:03 +0200 http://bitbucket.org/pypy/pypy/changeset/527742bb4035/ Log:scalars in ufuncs diff --git a/pypy/module/micronumpy/interp_numarray.py b/pypy/module/micronumpy/interp_numarray.py --- a

[pypy-commit] pypy numpy-refactor: scalar reshape

2012-09-04 Thread fijal
Author: Maciej Fijalkowski Branch: numpy-refactor Changeset: r57119:800092386c2f Date: 2012-09-04 12:54 +0200 http://bitbucket.org/pypy/pypy/changeset/800092386c2f/ Log:scalar reshape diff --git a/pypy/module/micronumpy/arrayimpl/scalar.py b/pypy/module/micronumpy/arrayimpl/scalar.py --- a/

[pypy-commit] pypy numpy-refactor: some reshape fixes

2012-09-04 Thread fijal
Author: Maciej Fijalkowski Branch: numpy-refactor Changeset: r57118:a4231c4f66f8 Date: 2012-09-04 12:34 +0200 http://bitbucket.org/pypy/pypy/changeset/a4231c4f66f8/ Log:some reshape fixes diff --git a/pypy/module/micronumpy/arrayimpl/concrete.py b/pypy/module/micronumpy/arrayimpl/concrete.p

[pypy-commit] pypy numpy-refactor: reshape and a test that was not passing before

2012-09-04 Thread fijal
Author: Maciej Fijalkowski Branch: numpy-refactor Changeset: r57117:560b7e740c2a Date: 2012-09-04 12:25 +0200 http://bitbucket.org/pypy/pypy/changeset/560b7e740c2a/ Log:reshape and a test that was not passing before diff --git a/pypy/module/micronumpy/arrayimpl/concrete.py b/pypy/module/mic

[pypy-commit] pypy default: Port the fix cffi/cffi a7550e27bbc4.

2012-09-04 Thread arigo
Author: Armin Rigo Branch: Changeset: r57116:282cd24306f0 Date: 2012-09-04 12:11 +0200 http://bitbucket.org/pypy/pypy/changeset/282cd24306f0/ Log:Port the fix cffi/cffi a7550e27bbc4. diff --git a/pypy/module/_cffi_backend/newtype.py b/pypy/module/_cffi_backend/newtype.py --- a/pypy/module/

[pypy-commit] cffi default: Fix.

2012-09-04 Thread arigo
Author: Armin Rigo Branch: Changeset: r914:a7550e27bbc4 Date: 2012-09-04 12:08 +0200 http://bitbucket.org/cffi/cffi/changeset/a7550e27bbc4/ Log:Fix. diff --git a/c/_cffi_backend.c b/c/_cffi_backend.c --- a/c/_cffi_backend.c +++ b/c/_cffi_backend.c @@ -3117,12 +3117,12 @@ assert(off

[pypy-commit] cffi default: A failing test (thanks Tobu on irc)

2012-09-04 Thread arigo
Author: Armin Rigo Branch: Changeset: r913:d7f9cddc707f Date: 2012-09-04 12:05 +0200 http://bitbucket.org/cffi/cffi/changeset/d7f9cddc707f/ Log:A failing test (thanks Tobu on irc) diff --git a/testing/test_verify.py b/testing/test_verify.py --- a/testing/test_verify.py +++ b/testing/test_ve

[pypy-commit] pypy numpy-refactor: Another refactor. This time we use __extend__ to make sure everyone can

2012-09-04 Thread fijal
Author: Maciej Fijalkowski Branch: numpy-refactor Changeset: r57115:c504e7e46331 Date: 2012-09-04 11:59 +0200 http://bitbucket.org/pypy/pypy/changeset/c504e7e46331/ Log:Another refactor. This time we use __extend__ to make sure everyone can import W_NDimArray diff --git a/pypy/module

[pypy-commit] extradoc extradoc: merge

2012-09-04 Thread fijal
Author: Maciej Fijalkowski Branch: extradoc Changeset: r4737:ebef81cd119a Date: 2012-09-04 11:11 +0200 http://bitbucket.org/pypy/extradoc/changeset/ebef81cd119a/ Log:merge diff --git a/talk/stm2012/stmimpl.rst b/talk/stm2012/stmimpl.rst --- a/talk/stm2012/stmimpl.rst +++ b/talk/stm2012/stmim

[pypy-commit] extradoc extradoc: numpy status update

2012-09-04 Thread fijal
Author: Maciej Fijalkowski Branch: extradoc Changeset: r4736:b0b530c75bce Date: 2012-09-04 11:10 +0200 http://bitbucket.org/pypy/extradoc/changeset/b0b530c75bce/ Log:numpy status update diff --git a/blog/draft/numpy-status-update-4.rst b/blog/draft/numpy-status-update-4.rst new file mode 10

[pypy-commit] pypy default: fix test whatsnew

2012-09-04 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r57114:7690ca2fee10 Date: 2012-09-04 11:07 +0200 http://bitbucket.org/pypy/pypy/changeset/7690ca2fee10/ Log:fix test whatsnew diff --git a/pypy/doc/whatsnew-head.rst b/pypy/doc/whatsnew-head.rst --- a/pypy/doc/whatsnew-head.rst +++ b/pypy/doc/wh

[pypy-commit] buildbot default: configure ARM nightly runs

2012-09-04 Thread bivab
Author: David Schneider Branch: Changeset: r680:d4041e581b09 Date: 2012-09-04 10:41 +0200 http://bitbucket.org/pypy/buildbot/changeset/d4041e581b09/ Log:configure ARM nightly runs diff --git a/bot2/pypybuildbot/master.py b/bot2/pypybuildbot/master.py --- a/bot2/pypybuildbot/master.py +++ b/

[pypy-commit] buildbot default: create and configure ARM cross-translation factories and builders

2012-09-04 Thread bivab
Author: David Schneider Branch: Changeset: r679:dd229deb5345 Date: 2012-09-04 10:37 +0200 http://bitbucket.org/pypy/buildbot/changeset/dd229deb5345/ Log:create and configure ARM cross-translation factories and builders diff --git a/bot2/pypybuildbot/master.py b/bot2/pypybuildbot/master.py -

[pypy-commit] buildbot default: adapt timeouts for the ARM factories

2012-09-04 Thread bivab
Author: David Schneider Branch: Changeset: r678:73e79c32a9e8 Date: 2012-09-04 10:36 +0200 http://bitbucket.org/pypy/buildbot/changeset/73e79c32a9e8/ Log:adapt timeouts for the ARM factories diff --git a/bot2/pypybuildbot/master.py b/bot2/pypybuildbot/master.py --- a/bot2/pypybuildbot/master

[pypy-commit] buildbot default: extend Translated build factory to prepend a prefix to the commands executed

2012-09-04 Thread bivab
Author: David Schneider Branch: Changeset: r677:5eb3e566e589 Date: 2012-09-04 10:34 +0200 http://bitbucket.org/pypy/buildbot/changeset/5eb3e566e589/ Log:extend Translated build factory to prepend a prefix to the commands executed diff --git a/bot2/pypybuildbot/builds.py b/bot2/pypyb

[pypy-commit] cffi default: Add 'sources', which can now be passed explicitly too.

2012-09-04 Thread arigo
Author: Armin Rigo Branch: Changeset: r912:fd3a0e5c6ab4 Date: 2012-09-04 10:23 +0200 http://bitbucket.org/cffi/cffi/changeset/fd3a0e5c6ab4/ Log:Add 'sources', which can now be passed explicitly too. diff --git a/doc/source/index.rst b/doc/source/index.rst --- a/doc/source/index.rst +++ b/do