[pypy-commit] pypy py3k: merge default

2012-11-05 Thread pjenvey
Author: Philip Jenvey Branch: py3k Changeset: r58763:82ea27f54373 Date: 2012-11-05 16:40 -0800 http://bitbucket.org/pypy/pypy/changeset/82ea27f54373/ Log:merge default diff --git a/pypy/objspace/std/longobject.py b/pypy/objspace/std/longobject.py --- a/pypy/objspace/std/longobject.py +++ b/p

[pypy-commit] pypy default: This assert seems necessary, to prove that rbigint.size is always positive.

2012-11-05 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: Changeset: r58762:eeb72e9c56e0 Date: 2012-11-06 00:28 +0100 http://bitbucket.org/pypy/pypy/changeset/eeb72e9c56e0/ Log:This assert seems necessary, to prove that rbigint.size is always positive. diff --git a/pypy/rlib/rbigint.py b/pypy/rlib/rbigi

[pypy-commit] pypy default: Do sign checks directly.

2012-11-05 Thread Stian Andreassen
Author: Stian Andreassen Branch: Changeset: r58761:bc1b37bec5b3 Date: 2012-11-05 23:41 +0100 http://bitbucket.org/pypy/pypy/changeset/bc1b37bec5b3/ Log:Do sign checks directly. diff --git a/pypy/objspace/std/longobject.py b/pypy/objspace/std/longobject.py --- a/pypy/objspace/std/longobject.p

[pypy-commit] pypy py3k: conftest.py is now importable by python3!

2012-11-05 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3k Changeset: r58760:c63145cd4fa5 Date: 2012-11-05 22:48 +0100 http://bitbucket.org/pypy/pypy/changeset/c63145cd4fa5/ Log:conftest.py is now importable by python3! diff --git a/pypy/conftest.py b/pypy/conftest.py --- a/pypy/conftest.py +++ b/pypy/confte

[pypy-commit] pypy py3k: Fixes in _ctypes module

2012-11-05 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3k Changeset: r58759:b0e1b5721cf7 Date: 2012-11-05 22:47 +0100 http://bitbucket.org/pypy/pypy/changeset/b0e1b5721cf7/ Log:Fixes in _ctypes module diff --git a/lib_pypy/_ctypes/array.py b/lib_pypy/_ctypes/array.py --- a/lib_pypy/_ctypes/array.py +++ b/li

[pypy-commit] pypy py3k: py3k-ify ctypes_test. Certainly incomplete, but at least they can be imported.

2012-11-05 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3k Changeset: r58758:132836979560 Date: 2012-10-28 19:47 +0100 http://bitbucket.org/pypy/pypy/changeset/132836979560/ Log:py3k-ify ctypes_test. Certainly incomplete, but at least they can be imported. diff --git a/pypy/module/test_lib_pypy/ctype

[pypy-commit] pypy py3k: Use _ffi in ctypes module (Same hack as 2.7 version)

2012-11-05 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3k Changeset: r58756:b3d2220224d7 Date: 2012-10-28 19:37 +0100 http://bitbucket.org/pypy/pypy/changeset/b3d2220224d7/ Log:Use _ffi in ctypes module (Same hack as 2.7 version) diff --git a/lib-python/3.2/ctypes/__init__.py b/lib-python/3.2/ctypes/__init

[pypy-commit] pypy py3k: Ensure that sys.stdout &co have a "mode" attribute.

2012-11-05 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3k Changeset: r58755:dc70da613d27 Date: 2012-10-27 23:19 +0200 http://bitbucket.org/pypy/pypy/changeset/dc70da613d27/ Log:Ensure that sys.stdout &co have a "mode" attribute. diff --git a/pypy/translator/goal/app_main.py b/pypy/translator/goal/app_main.p

[pypy-commit] pypy py3k: Fix failing test in _rawffi

2012-11-05 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3k Changeset: r58753:ac149d6f109d Date: 2012-10-27 09:44 +0200 http://bitbucket.org/pypy/pypy/changeset/ac149d6f109d/ Log:Fix failing test in _rawffi diff --git a/pypy/module/_rawffi/test/test__rawffi.py b/pypy/module/_rawffi/test/test__rawffi.py --- a

[pypy-commit] pypy py3k: Tweak test_fileio.py, just like version 2.7.

2012-11-05 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3k Changeset: r58752:acbed198f8af Date: 2012-10-27 00:52 +0200 http://bitbucket.org/pypy/pypy/changeset/acbed198f8af/ Log:Tweak test_fileio.py, just like version 2.7. diff --git a/lib-python/3.2/test/test_fileio.py b/lib-python/3.2/test/test_fileio.py

[pypy-commit] pypy py3k: py3k-ify the _ctypes module

2012-11-05 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3k Changeset: r58757:48df97e8ce7a Date: 2012-10-28 19:44 +0100 http://bitbucket.org/pypy/pypy/changeset/48df97e8ce7a/ Log:py3k-ify the _ctypes module diff --git a/lib_pypy/_ctypes/array.py b/lib_pypy/_ctypes/array.py --- a/lib_pypy/_ctypes/array.py +++

[pypy-commit] pypy py3k: Attempt to enable _rawffi and _ffi

2012-11-05 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3k Changeset: r58754:04108d4a20ed Date: 2012-10-27 09:44 +0200 http://bitbucket.org/pypy/pypy/changeset/04108d4a20ed/ Log:Attempt to enable _rawffi and _ffi diff --git a/pypy/config/pypyoption.py b/pypy/config/pypyoption.py --- a/pypy/config/pypyoption.

[pypy-commit] pypy default: hg merge heads

2012-11-05 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: Changeset: r58750:46d142d32515 Date: 2012-11-05 21:33 +0100 http://bitbucket.org/pypy/pypy/changeset/46d142d32515/ Log:hg merge heads diff --git a/pypy/objspace/std/bytearrayobject.py b/pypy/objspace/std/bytearrayobject.py --- a/pypy/objspace/std/bytear

[pypy-commit] pypy move-apptest-support: Close branch to be merged

2012-11-05 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: move-apptest-support Changeset: r58748:094fe98dd409 Date: 2012-11-05 21:30 +0100 http://bitbucket.org/pypy/pypy/changeset/094fe98dd409/ Log:Close branch to be merged ___ pypy-commit mailing list pypy-commit@pyth

[pypy-commit] pypy default: Merge branch move-apptest-support:

2012-11-05 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: Changeset: r58749:443aecb1a7e2 Date: 2012-11-05 21:32 +0100 http://bitbucket.org/pypy/pypy/changeset/443aecb1a7e2/ Log:Merge branch move-apptest-support: Move many helper classes out of conftest.py, to make it compatible with python3 syntax, and h

[pypy-commit] pypy move-apptest-support: This check is not necessary: appdirect only collects AppTest classes

2012-11-05 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: move-apptest-support Changeset: r58747:e866e583c1b3 Date: 2012-11-05 21:18 +0100 http://bitbucket.org/pypy/pypy/changeset/e866e583c1b3/ Log:This check is not necessary: appdirect only collects AppTest classes diff --git a/pypy/conftest.py b/pypy/conftest.

[pypy-commit] pypy move-apptest-support: Move support for KeyboardInterrupt

2012-11-05 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: move-apptest-support Changeset: r58746:8bb850079b8f Date: 2012-11-05 21:17 +0100 http://bitbucket.org/pypy/pypy/changeset/8bb850079b8f/ Log:Move support for KeyboardInterrupt diff --git a/pypy/conftest.py b/pypy/conftest.py --- a/pypy/conftest.py +++ b/py

[pypy-commit] pypy move-apptest-support: hg merge default

2012-11-05 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: move-apptest-support Changeset: r58745:47327bda918d Date: 2012-11-05 21:04 +0100 http://bitbucket.org/pypy/pypy/changeset/47327bda918d/ Log:hg merge default diff --git a/pypy/doc/sandbox.rst b/pypy/doc/sandbox.rst --- a/pypy/doc/sandbox.rst +++ b/pypy/doc

[pypy-commit] pypy default: slightly rework the bytearray to float fix mostly for the sake of py3k

2012-11-05 Thread pjenvey
Author: Philip Jenvey Branch: Changeset: r58744:32fdb45eb9ba Date: 2012-11-05 12:18 -0800 http://bitbucket.org/pypy/pypy/changeset/32fdb45eb9ba/ Log:slightly rework the bytearray to float fix mostly for the sake of py3k diff --git a/pypy/objspace/std/bytearrayobject.py b/pypy/objsp

[pypy-commit] pypy numpypy.float16: remove untested and unused pack_str

2012-11-05 Thread mattip
Author: mattip Branch: numpypy.float16 Changeset: r58743:585968f4df8a Date: 2012-11-05 21:08 +0200 http://bitbucket.org/pypy/pypy/changeset/585968f4df8a/ Log:remove untested and unused pack_str diff --git a/pypy/module/micronumpy/types.py b/pypy/module/micronumpy/types.py --- a/pypy/module/m

[pypy-commit] pypy numpypy.float16: remove halffloat, use rstruct/ieee instead

2012-11-05 Thread mattip
Author: mattip Branch: numpypy.float16 Changeset: r58742:732cf0bce873 Date: 2012-11-05 21:06 +0200 http://bitbucket.org/pypy/pypy/changeset/732cf0bce873/ Log:remove halffloat, use rstruct/ieee instead diff --git a/pypy/module/micronumpy/halffloat.py b/pypy/module/micronumpy/halffloat.py del

[pypy-commit] pypy numpypy.float16: add and test size=2 to ieee float_pack, float_unpack

2012-11-05 Thread mattip
Author: mattip Branch: numpypy.float16 Changeset: r58741:92781d000de0 Date: 2012-11-05 20:57 +0200 http://bitbucket.org/pypy/pypy/changeset/92781d000de0/ Log:add and test size=2 to ieee float_pack, float_unpack diff --git a/pypy/module/micronumpy/types.py b/pypy/module/micronumpy/types.py --

[pypy-commit] pypy default: Remove this assert, it's a condition for the while loop

2012-11-05 Thread Stian Andreassen
Author: Stian Andreassen Branch: Changeset: r58740:86ab7f9f73b7 Date: 2012-11-05 15:50 +0100 http://bitbucket.org/pypy/pypy/changeset/86ab7f9f73b7/ Log:Remove this assert, it's a condition for the while loop diff --git a/pypy/rlib/rbigint.py b/pypy/rlib/rbigint.py --- a/pypy/rlib/rbigint.py

[pypy-commit] pypy default: Give rbigint.eq a faster path (atleast it benchmarks slightly faster)

2012-11-05 Thread Stian Andreassen
Author: Stian Andreassen Branch: Changeset: r58739:e70778239285 Date: 2012-11-05 15:47 +0100 http://bitbucket.org/pypy/pypy/changeset/e70778239285/ Log:Give rbigint.eq a faster path (atleast it benchmarks slightly faster) diff --git a/pypy/rlib/rbigint.py b/pypy/rlib/rbigint.py --- a

[pypy-commit] pypy default: Add a warning.

2012-11-05 Thread arigo
Author: Armin Rigo Branch: Changeset: r58738:18a8aaa00373 Date: 2012-11-05 14:54 +0100 http://bitbucket.org/pypy/pypy/changeset/18a8aaa00373/ Log:Add a warning. diff --git a/pypy/doc/sandbox.rst b/pypy/doc/sandbox.rst --- a/pypy/doc/sandbox.rst +++ b/pypy/doc/sandbox.rst @@ -25,6 +25,13 @@

[pypy-commit] pypy py3k: hg merge default; in particular, this also merges the unicode-strategies branch; the merge was not completely straightforward because some strategies were migrated from string

2012-11-05 Thread antocuni
Author: Antonio Cuni Branch: py3k Changeset: r58737:96f5f07925ba Date: 2012-11-05 14:12 +0100 http://bitbucket.org/pypy/pypy/changeset/96f5f07925ba/ Log:hg merge default; in particular, this also merges the unicode- strategies branch; the merge was not completely straightforward

[pypy-commit] buildbot default: unschedule the xdist based ARM for nightly runs

2012-11-05 Thread bivab
Author: David Schneider Branch: Changeset: r720:2b500fa3149c Date: 2012-11-05 10:24 +0100 http://bitbucket.org/pypy/buildbot/changeset/2b500fa3149c/ Log:unschedule the xdist based ARM for nightly runs diff --git a/bot2/pypybuildbot/master.py b/bot2/pypybuildbot/master.py --- a/bot2/pypybuil

[pypy-commit] buildbot default: move own32 to tannit for now

2012-11-05 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r719:e9570a556e99 Date: 2012-11-05 10:39 +0200 http://bitbucket.org/pypy/buildbot/changeset/e9570a556e99/ Log:move own32 to tannit for now diff --git a/bot2/pypybuildbot/master.py b/bot2/pypybuildbot/master.py --- a/bot2/pypybuildbot/master.py +

[pypy-commit] pypy continulet-jit-3: Fix test

2012-11-05 Thread arigo
Author: Armin Rigo Branch: continulet-jit-3 Changeset: r58735:4910976b0e87 Date: 2012-11-05 09:21 +0100 http://bitbucket.org/pypy/pypy/changeset/4910976b0e87/ Log:Fix test diff --git a/pypy/jit/metainterp/test/test_resume.py b/pypy/jit/metainterp/test/test_resume.py --- a/pypy/jit/metainter

[pypy-commit] pypy continulet-jit-3: Fixes

2012-11-05 Thread arigo
Author: Armin Rigo Branch: continulet-jit-3 Changeset: r58734:3c39ceadba97 Date: 2012-11-05 09:15 +0100 http://bitbucket.org/pypy/pypy/changeset/3c39ceadba97/ Log:Fixes diff --git a/pypy/jit/metainterp/logger.py b/pypy/jit/metainterp/logger.py --- a/pypy/jit/metainterp/logger.py +++ b/pypy/j

[pypy-commit] pypy default: Move the import at module level. Should fix test_thunkobjspace.

2012-11-05 Thread arigo
Author: Armin Rigo Branch: Changeset: r58736:3a8541ddf11d Date: 2012-11-05 09:37 +0100 http://bitbucket.org/pypy/pypy/changeset/3a8541ddf11d/ Log:Move the import at module level. Should fix test_thunkobjspace. diff --git a/pypy/tool/pytest/objspace.py b/pypy/tool/pytest/objspace.py --- a/py