[pypy-commit] pypy numpy-back-to-applevel: merge default

2012-01-23 Thread fijal
Author: Maciej Fijalkowski Branch: numpy-back-to-applevel Changeset: r51683:0068fa0d5e01 Date: 2012-01-23 11:27 +0200 http://bitbucket.org/pypy/pypy/changeset/0068fa0d5e01/ Log:merge default diff --git a/lib_pypy/datetime.py b/lib_pypy/datetime.py --- a/lib_pypy/datetime.py +++ b/lib_pypy/da

[pypy-commit] pypy numppy-flatitter: correct faulty tests

2012-01-23 Thread mattip
Author: mattip Branch: numppy-flatitter Changeset: r51684:dd2ec11ec817 Date: 2012-01-23 11:02 +0200 http://bitbucket.org/pypy/pypy/changeset/dd2ec11ec817/ Log:correct faulty tests diff --git a/pypy/module/micronumpy/interp_numarray.py b/pypy/module/micronumpy/interp_numarray.py --- a/pypy/mo

[pypy-commit] buildbot default: require an executable

2012-01-23 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r610:1c946f853e6b Date: 2012-01-23 13:33 +0200 http://bitbucket.org/pypy/buildbot/changeset/1c946f853e6b/ Log:require an executable diff --git a/numready.py b/numready.py --- a/numready.py +++ b/numready.py @@ -197,10 +197,8 @@ return l

[pypy-commit] buildbot default: minor adjustments

2012-01-23 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r611:914834b4058a Date: 2012-01-23 13:36 +0200 http://bitbucket.org/pypy/buildbot/changeset/914834b4058a/ Log:minor adjustments diff --git a/numready.py b/numready.py --- a/numready.py +++ b/numready.py @@ -214,10 +214,13 @@ )

[pypy-commit] pypy default: Move these three functions at interp-level: potential threading issues

2012-01-23 Thread arigo
Author: Armin Rigo Branch: Changeset: r51685:c32fbc60b64c Date: 2012-01-23 15:28 +0100 http://bitbucket.org/pypy/pypy/changeset/c32fbc60b64c/ Log:Move these three functions at interp-level: potential threading issues if they are written at app-level. diff --git a/pypy/interpreter/ex

[pypy-commit] pypy default: Try to be more careful about free()ing this in case something fails.

2012-01-23 Thread arigo
Author: Armin Rigo Branch: Changeset: r51686:598e02bd0eb8 Date: 2012-01-23 15:34 +0100 http://bitbucket.org/pypy/pypy/changeset/598e02bd0eb8/ Log:Try to be more careful about free()ing this in case something fails. diff --git a/pypy/module/_hashlib/interp_hashlib.py b/pypy/module/_hashlib/

[pypy-commit] pypy matrixmath-dot: added test from numpy docstring

2012-01-23 Thread mattip
Author: mattip Branch: matrixmath-dot Changeset: r51687:3431bdf3f8a1 Date: 2012-01-22 02:09 +0200 http://bitbucket.org/pypy/pypy/changeset/3431bdf3f8a1/ Log:added test from numpy docstring diff --git a/pypy/module/micronumpy/test/test_numarray.py b/pypy/module/micronumpy/test/test_numarray.p

[pypy-commit] pypy numpypy-reshape: close useless branch

2012-01-23 Thread mattip
Author: mattip Branch: numpypy-reshape Changeset: r51688:1c041f97db71 Date: 2012-01-23 17:54 +0200 http://bitbucket.org/pypy/pypy/changeset/1c041f97db71/ Log:close useless branch ___ pypy-commit mailing list [email protected] http://mail.python

[pypy-commit] pypy stm: add the stm_thread_id() helper

2012-01-23 Thread arigo
Author: Armin Rigo Branch: stm Changeset: r51689:6eb15b35a17d Date: 2012-01-23 16:16 +0100 http://bitbucket.org/pypy/pypy/changeset/6eb15b35a17d/ Log:add the stm_thread_id() helper diff --git a/pypy/translator/stm/_rffi_stm.py b/pypy/translator/stm/_rffi_stm.py --- a/pypy/translator/stm/_rff

[pypy-commit] pypy stm: More hacking...

2012-01-23 Thread arigo
Author: Armin Rigo Branch: stm Changeset: r51690:3c5c86ba384f Date: 2012-01-23 16:20 +0100 http://bitbucket.org/pypy/pypy/changeset/3c5c86ba384f/ Log:More hacking... diff --git a/pypy/module/transaction/__init__.py b/pypy/module/transaction/__init__.py --- a/pypy/module/transaction/__init__

[pypy-commit] pypy default: Improve the docstring and re-export weakref.ref() under the name

2012-01-23 Thread arigo
Author: Armin Rigo Branch: Changeset: r51693:207092a8b272 Date: 2012-01-23 17:30 +0100 http://bitbucket.org/pypy/pypy/changeset/207092a8b272/ Log:Improve the docstring and re-export weakref.ref() under the name pypy.rlib.rweakref.ref(). diff --git a/pypy/rlib/rweakref.py b/pypy/rlib

[pypy-commit] pypy stm: Use thread_id() from stm instead of the one from threads.

2012-01-23 Thread arigo
Author: Armin Rigo Branch: stm Changeset: r51691:db48523657f2 Date: 2012-01-23 16:21 +0100 http://bitbucket.org/pypy/pypy/changeset/db48523657f2/ Log:Use thread_id() from stm instead of the one from threads. diff --git a/pypy/module/transaction/interp_transaction.py b/pypy/module/transactio

[pypy-commit] pypy stm: Make the ExecutionContext again a thread-local. See comments.

2012-01-23 Thread arigo
Author: Armin Rigo Branch: stm Changeset: r51692:e5329461f8ca Date: 2012-01-23 17:15 +0100 http://bitbucket.org/pypy/pypy/changeset/e5329461f8ca/ Log:Make the ExecutionContext again a thread-local. See comments. diff --git a/pypy/module/transaction/__init__.py b/pypy/module/transaction/__in

[pypy-commit] pypy merge-2.7.2: Fix multibytecodec incremental tests: ensure that .encode(final=True)

2012-01-23 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: merge-2.7.2 Changeset: r51694:9c27a0100918 Date: 2012-01-23 19:19 +0100 http://bitbucket.org/pypy/pypy/changeset/9c27a0100918/ Log:Fix multibytecodec incremental tests: ensure that .encode(final=True) is always called at the end. Also have

[pypy-commit] pypy merge-2.7.2: Test and fix in mixed read/write/seek/write operations

2012-01-23 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: merge-2.7.2 Changeset: r51695:bf9a09ac155b Date: 2012-01-23 20:10 +0100 http://bitbucket.org/pypy/pypy/changeset/bf9a09ac155b/ Log:Test and fix in mixed read/write/seek/write operations diff --git a/pypy/module/_io/interp_bufferedio.py b/pypy/module/_io/

[pypy-commit] pypy merge-2.7.2: The underlying stream of a BufferedIO can call arbitrary code,

2012-01-23 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: merge-2.7.2 Changeset: r51696:624143b36c8d Date: 2012-01-23 22:13 +0100 http://bitbucket.org/pypy/pypy/changeset/624143b36c8d/ Log:The underlying stream of a BufferedIO can call arbitrary code, or yield to some signal handler; protect against reent

[pypy-commit] pypy numpy-back-to-applevel: minor improvements

2012-01-23 Thread fijal
Author: Maciej Fijalkowski Branch: numpy-back-to-applevel Changeset: r51697:9c6ebf53fca0 Date: 2012-01-23 23:47 +0200 http://bitbucket.org/pypy/pypy/changeset/9c6ebf53fca0/ Log:minor improvements diff --git a/lib_pypy/numpypy/core/arrayprint.py b/lib_pypy/numpypy/core/arrayprint.py --- a/li

[pypy-commit] pypy numpy-back-to-applevel: a test commit

2012-01-23 Thread fijal
Author: Maciej Fijalkowski Branch: numpy-back-to-applevel Changeset: r51698:f35e55900c6e Date: 2012-01-23 23:50 +0200 http://bitbucket.org/pypy/pypy/changeset/f35e55900c6e/ Log:a test commit diff --git a/pypy/module/micronumpy/interp_boxes.py b/pypy/module/micronumpy/interp_boxes.py --- a/p

[pypy-commit] pypy numpy-back-to-applevel: add another test commit

2012-01-23 Thread fijal
Author: Maciej Fijalkowski Branch: numpy-back-to-applevel Changeset: r51699:27230fad5112 Date: 2012-01-23 23:58 +0200 http://bitbucket.org/pypy/pypy/changeset/27230fad5112/ Log:add another test commit diff --git a/pypy/module/micronumpy/interp_boxes.py b/pypy/module/micronumpy/interp_boxes.

[pypy-commit] pypy default: This file belongs here for now

2012-01-23 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r51700:a56e47f860e4 Date: 2012-01-24 00:41 +0200 http://bitbucket.org/pypy/pypy/changeset/a56e47f860e4/ Log:This file belongs here for now diff --git a/pypy/module/micronumpy/tool/numready.py b/pypy/module/micronumpy/tool/numready.py new file m

[pypy-commit] pypy default: Get additional compiler and linker flags from the environment (rather than ignoring them on linux, and replacing the required flags on freebsd)

2012-01-23 Thread stefanor
Author: Stefano Rivera Branch: Changeset: r51701:173aa3e5cde0 Date: 2012-01-24 00:43 +0200 http://bitbucket.org/pypy/pypy/changeset/173aa3e5cde0/ Log:Get additional compiler and linker flags from the environment (rather than ignoring them on linux, and replacing the required

[pypy-commit] buildbot default: remove numready from here

2012-01-23 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r612:fdaf7c879572 Date: 2012-01-24 00:41 +0200 http://bitbucket.org/pypy/buildbot/changeset/fdaf7c879572/ Log:remove numready from here diff --git a/bot2/pypybuildbot/builds.py b/bot2/pypybuildbot/builds.py --- a/bot2/pypybuildbot/builds.py +++

[pypy-commit] buildbot default: this was not supposed to be commited

2012-01-23 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r613:166c710d4406 Date: 2012-01-24 00:54 +0200 http://bitbucket.org/pypy/buildbot/changeset/166c710d4406/ Log:this was not supposed to be commited diff --git a/bot2/pypybuildbot/builds.py b/bot2/pypybuildbot/builds.py --- a/bot2/pypybuildbot/bui

[pypy-commit] pypy default: Debian kFreeBSD uses glibc

2012-01-23 Thread stefanor
Author: Stefano Rivera Branch: Changeset: r51703:26b2fb7939ee Date: 2012-01-24 01:01 +0200 http://bitbucket.org/pypy/pypy/changeset/26b2fb7939ee/ Log:Debian kFreeBSD uses glibc Check for sys.platform.startswith("freebsd") when the check is for FreeBSD's userland and 'freebsd

[pypy-commit] pypy default: Test hangs on kfreebsd

2012-01-23 Thread stefanor
Author: Stefano Rivera Branch: Changeset: r51704:67ae2044a17f Date: 2012-01-24 01:01 +0200 http://bitbucket.org/pypy/pypy/changeset/67ae2044a17f/ Log:Test hangs on kfreebsd diff --git a/pypy/module/_ssl/test/test_ssl.py b/pypy/module/_ssl/test/test_ssl.py --- a/pypy/module/_ssl/test/test_s

[pypy-commit] pypy default: a, b = space.unpackiterable(w_obj, 2) is not supposed to raise ValueError

2012-01-23 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: Changeset: r51702:36fefb3d271e Date: 2012-01-23 23:05 +0100 http://bitbucket.org/pypy/pypy/changeset/36fefb3d271e/ Log:a, b = space.unpackiterable(w_obj, 2) is not supposed to raise ValueError diff --git a/pypy/module/_socket/interp_socket.py b/

[pypy-commit] buildbot default: try to upload numpy compatibility website when doing benchmarks

2012-01-23 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r614:fbcf930f4155 Date: 2012-01-24 01:06 +0200 http://bitbucket.org/pypy/buildbot/changeset/fbcf930f4155/ Log:try to upload numpy compatibility website when doing benchmarks diff --git a/bot2/pypybuildbot/builds.py b/bot2/pypybuildbot/builds.py

[pypy-commit] pypy default: merge

2012-01-23 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r51706:454ec575a42a Date: 2012-01-24 02:40 +0200 http://bitbucket.org/pypy/pypy/changeset/454ec575a42a/ Log:merge diff --git a/pypy/module/_socket/interp_socket.py b/pypy/module/_socket/interp_socket.py --- a/pypy/module/_socket/interp_socket.p

[pypy-commit] pypy default: bump rev no

2012-01-23 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r51705:fc6c9d14a686 Date: 2012-01-24 02:39 +0200 http://bitbucket.org/pypy/pypy/changeset/fc6c9d14a686/ Log:bump rev no diff --git a/pypy/doc/getting-started.rst b/pypy/doc/getting-started.rst --- a/pypy/doc/getting-started.rst +++ b/pypy/doc/ge