[pypy-commit] pypy stm-gc: Complete the comment.

2012-04-17 Thread arigo
Author: Armin Rigo Branch: stm-gc Changeset: r54450:df717693c947 Date: 2012-04-17 10:30 +0200 http://bitbucket.org/pypy/pypy/changeset/df717693c947/ Log:Complete the comment. diff --git a/lib_pypy/transaction.py b/lib_pypy/transaction.py --- a/lib_pypy/transaction.py +++ b/lib_pypy/transacti

[pypy-commit] pypy stm-gc: Fixes.

2012-04-17 Thread arigo
Author: Armin Rigo Branch: stm-gc Changeset: r54449:a33aa4134c22 Date: 2012-04-16 22:25 +0200 http://bitbucket.org/pypy/pypy/changeset/a33aa4134c22/ Log:Fixes. diff --git a/pypy/rpython/memory/gc/stmtls.py b/pypy/rpython/memory/gc/stmtls.py --- a/pypy/rpython/memory/gc/stmtls.py +++ b/pypy/r

[pypy-commit] pypy default: fix issue 1131: coerce the return value of __contains__ to bool

2012-04-17 Thread antocuni
Author: Antonio Cuni Branch: Changeset: r54451:3efbde36c6ed Date: 2012-04-17 11:11 +0200 http://bitbucket.org/pypy/pypy/changeset/3efbde36c6ed/ Log:fix issue 1131: coerce the return value of __contains__ to bool diff --git a/pypy/objspace/descroperation.py b/pypy/objspace/descroperation.py

[pypy-commit] pypy default: merge heads

2012-04-17 Thread antocuni
Author: Antonio Cuni Branch: Changeset: r54452:afff86e02d5b Date: 2012-04-17 11:11 +0200 http://bitbucket.org/pypy/pypy/changeset/afff86e02d5b/ Log:merge heads diff --git a/pypy/config/pypyoption.py b/pypy/config/pypyoption.py --- a/pypy/config/pypyoption.py +++ b/pypy/config/pypyoption.py

[pypy-commit] pypy stm-gc: Test and fix.

2012-04-17 Thread arigo
Author: Armin Rigo Branch: stm-gc Changeset: r54453:140fbb1aac69 Date: 2012-04-17 10:49 +0200 http://bitbucket.org/pypy/pypy/changeset/140fbb1aac69/ Log:Test and fix. diff --git a/pypy/rpython/memory/gc/stmtls.py b/pypy/rpython/memory/gc/stmtls.py --- a/pypy/rpython/memory/gc/stmtls.py +++ b

[pypy-commit] pypy default: (antocuni, amaury and arigato around): bah, space.bool_w does not work generally. Use space.nonzero instead

2012-04-17 Thread antocuni
Author: Antonio Cuni Branch: Changeset: r54455:cf29881e5624 Date: 2012-04-17 11:24 +0200 http://bitbucket.org/pypy/pypy/changeset/cf29881e5624/ Log:(antocuni, amaury and arigato around): bah, space.bool_w does not work generally. Use space.nonzero instead diff --git a/pypy/objspace/

[pypy-commit] pypy default: Check that we get the exact exception raised, not an unrelated TypeError.

2012-04-17 Thread arigo
Author: Armin Rigo Branch: Changeset: r54456:f4cd131f5c40 Date: 2012-04-17 11:30 +0200 http://bitbucket.org/pypy/pypy/changeset/f4cd131f5c40/ Log:Check that we get the exact exception raised, not an unrelated TypeError. diff --git a/pypy/objspace/test/test_descroperation.py b/pypy/

[pypy-commit] pypy stm-gc: We really need to know if we're starting a new or restarting an aborted

2012-04-17 Thread arigo
Author: Armin Rigo Branch: stm-gc Changeset: r54457:93da8b4ece49 Date: 2012-04-17 11:58 +0200 http://bitbucket.org/pypy/pypy/changeset/93da8b4ece49/ Log:We really need to know if we're starting a new or restarting an aborted transaction. diff --git a/pypy/rlib/rstm.py b/pypy/rlib/rst

[pypy-commit] pypy gc-minimark-pinning: oops, forgot to unpin this

2012-04-17 Thread fijal
Author: Maciej Fijalkowski Branch: gc-minimark-pinning Changeset: r54458:f698795d565a Date: 2012-04-17 10:51 +0200 http://bitbucket.org/pypy/pypy/changeset/f698795d565a/ Log:oops, forgot to unpin this diff --git a/pypy/rpython/lltypesystem/rffi.py b/pypy/rpython/lltypesystem/rffi.py --- a/p

[pypy-commit] pypy stm-gc: Backed out changeset 93da8b4ece49

2012-04-17 Thread arigo
Author: Armin Rigo Branch: stm-gc Changeset: r54459:12759f6412ee Date: 2012-04-17 13:02 +0200 http://bitbucket.org/pypy/pypy/changeset/12759f6412ee/ Log:Backed out changeset 93da8b4ece49 diff --git a/pypy/rlib/rstm.py b/pypy/rlib/rstm.py --- a/pypy/rlib/rstm.py +++ b/pypy/rlib/rstm.py @@ -14

[pypy-commit] pypy py3k: Fix the optimization for sys.exc_info().

2012-04-17 Thread arigo
Author: Armin Rigo Branch: py3k Changeset: r54461:062d8a9acdf2 Date: 2012-04-17 14:02 +0200 http://bitbucket.org/pypy/pypy/changeset/062d8a9acdf2/ Log:Fix the optimization for sys.exc_info(). diff --git a/pypy/module/sys/vm.py b/pypy/module/sys/vm.py --- a/pypy/module/sys/vm.py +++ b/pypy/mo

[pypy-commit] pypy stm-gc: Save and restore the root_stack_top explicitly with the help of C code.

2012-04-17 Thread arigo
Author: Armin Rigo Branch: stm-gc Changeset: r54460:7a642543dd09 Date: 2012-04-17 13:28 +0200 http://bitbucket.org/pypy/pypy/changeset/7a642543dd09/ Log:Save and restore the root_stack_top explicitly with the help of C code. diff --git a/pypy/rlib/rstm.py b/pypy/rlib/rstm.py --- a/py

[pypy-commit] pypy dynamic-specialized-tuple: add raw storage to test_ztranslation

2012-04-17 Thread fijal
Author: Maciej Fijalkowski Branch: dynamic-specialized-tuple Changeset: r54462:c16601d836d0 Date: 2012-04-17 16:18 +0200 http://bitbucket.org/pypy/pypy/changeset/c16601d836d0/ Log:add raw storage to test_ztranslation diff --git a/pypy/jit/backend/x86/test/test_ztranslation.py b/pypy/jit/bac

[pypy-commit] pypy dynamic-specialized-tuple: copy this stuff to a descr, so caching is done by someone else

2012-04-17 Thread fijal
Author: Maciej Fijalkowski Branch: dynamic-specialized-tuple Changeset: r54463:1011b0cf4476 Date: 2012-04-17 16:20 +0200 http://bitbucket.org/pypy/pypy/changeset/1011b0cf4476/ Log:copy this stuff to a descr, so caching is done by someone else diff --git a/pypy/jit/backend/llsupport/llmodel.p

[pypy-commit] pypy win32-cleanup2: validate more fd's

2012-04-17 Thread mattip
Author: Matti Picus Branch: win32-cleanup2 Changeset: r54464:b972b2e27935 Date: 2012-04-17 17:49 +0300 http://bitbucket.org/pypy/pypy/changeset/b972b2e27935/ Log:validate more fd's diff --git a/pypy/rpython/module/ll_os.py b/pypy/rpython/module/ll_os.py --- a/pypy/rpython/module/ll_os.py +++

[pypy-commit] pypy dynamic-specialized-tuple: fixes for cpyext

2012-04-17 Thread alex_gaynor
Author: Alex Gaynor Branch: dynamic-specialized-tuple Changeset: r54465:194eecac5a7b Date: 2012-04-17 10:54 -0400 http://bitbucket.org/pypy/pypy/changeset/194eecac5a7b/ Log:fixes for cpyext diff --git a/pypy/module/cpyext/sequence.py b/pypy/module/cpyext/sequence.py --- a/pypy/module/cpyext/

[pypy-commit] pypy dynamic-specialized-tuple: 2 more fixes

2012-04-17 Thread alex_gaynor
Author: Alex Gaynor Branch: dynamic-specialized-tuple Changeset: r54466:cf93e89d4822 Date: 2012-04-17 11:06 -0400 http://bitbucket.org/pypy/pypy/changeset/cf93e89d4822/ Log:2 more fixes diff --git a/pypy/module/cpyext/sequence.py b/pypy/module/cpyext/sequence.py --- a/pypy/module/cpyext/sequ

[pypy-commit] pypy dynamic-specialized-tuple: one mroe fix

2012-04-17 Thread alex_gaynor
Author: Alex Gaynor Branch: dynamic-specialized-tuple Changeset: r54467:da02bab14d8c Date: 2012-04-17 11:12 -0400 http://bitbucket.org/pypy/pypy/changeset/da02bab14d8c/ Log:one mroe fix diff --git a/pypy/module/cpyext/sequence.py b/pypy/module/cpyext/sequence.py --- a/pypy/module/cpyext/sequ

[pypy-commit] pypy py3k: py3k-ify

2012-04-17 Thread antocuni
Author: Antonio Cuni Branch: py3k Changeset: r54468:e2298258f8a6 Date: 2012-04-17 12:19 +0200 http://bitbucket.org/pypy/pypy/changeset/e2298258f8a6/ Log:py3k-ify diff --git a/pypy/module/array/test/test_array.py b/pypy/module/array/test/test_array.py --- a/pypy/module/array/test/test_array.

[pypy-commit] pypy py3k: py3k_skip the failing zzpickle tests. Some are only needed for stackless, I'll fix them once the core py3k is working

2012-04-17 Thread antocuni
Author: Antonio Cuni Branch: py3k Changeset: r54474:0961d07b95b5 Date: 2012-04-17 17:07 +0200 http://bitbucket.org/pypy/pypy/changeset/0961d07b95b5/ Log:py3k_skip the failing zzpickle tests. Some are only needed for stackless, I'll fix them once the core py3k is working diff --git a/

[pypy-commit] pypy py3k: py3k-ify

2012-04-17 Thread antocuni
Author: Antonio Cuni Branch: py3k Changeset: r54469:a6e00f858173 Date: 2012-04-17 14:34 +0200 http://bitbucket.org/pypy/pypy/changeset/a6e00f858173/ Log:py3k-ify diff --git a/pypy/objspace/std/test/test_dictmultiobject.py b/pypy/objspace/std/test/test_dictmultiobject.py --- a/pypy/objspace/

[pypy-commit] pypy py3k: add an applevel py3k_skip, and py3k_skip some multidict tests

2012-04-17 Thread antocuni
Author: Antonio Cuni Branch: py3k Changeset: r54471:8868ac4174b0 Date: 2012-04-17 16:00 +0200 http://bitbucket.org/pypy/pypy/changeset/8868ac4174b0/ Log:add an applevel py3k_skip, and py3k_skip some multidict tests diff --git a/pypy/conftest.py b/pypy/conftest.py --- a/pypy/conftest.py +++ b

[pypy-commit] pypy py3k: don't try to support _continuation before having the core py3k working

2012-04-17 Thread antocuni
Author: Antonio Cuni Branch: py3k Changeset: r54475:cc66208f7aaf Date: 2012-04-17 17:09 +0200 http://bitbucket.org/pypy/pypy/changeset/cc66208f7aaf/ Log:don't try to support _continuation before having the core py3k working diff --git a/pypy/module/_continuation/test/test_zpickle.py

[pypy-commit] pypy py3k: add a py3k_skip helper, for tests which can be skipped now on py3k, but should be fixed sooner or later

2012-04-17 Thread antocuni
Author: Antonio Cuni Branch: py3k Changeset: r54470:485bd020e6f7 Date: 2012-04-17 15:41 +0200 http://bitbucket.org/pypy/pypy/changeset/485bd020e6f7/ Log:add a py3k_skip helper, for tests which can be skipped now on py3k, but should be fixed sooner or later diff --git a/pypy/conftest.

[pypy-commit] pypy py3k: we no longer have W_IntObject, but longs

2012-04-17 Thread antocuni
Author: Antonio Cuni Branch: py3k Changeset: r54477:57c1bff7b005 Date: 2012-04-17 17:35 +0200 http://bitbucket.org/pypy/pypy/changeset/57c1bff7b005/ Log:we no longer have W_IntObject, but longs diff --git a/pypy/objspace/std/bytearrayobject.py b/pypy/objspace/std/bytearrayobject.py --- a/py

[pypy-commit] pypy py3k: skip one more test

2012-04-17 Thread antocuni
Author: Antonio Cuni Branch: py3k Changeset: r54472:bf0e6b700818 Date: 2012-04-17 16:05 +0200 http://bitbucket.org/pypy/pypy/changeset/bf0e6b700818/ Log:skip one more test diff --git a/pypy/objspace/std/test/test_stringobject.py b/pypy/objspace/std/test/test_stringobject.py --- a/pypy/objsp

[pypy-commit] pypy py3k: skip micronumpy tests, we are not interested in them right now

2012-04-17 Thread antocuni
Author: Antonio Cuni Branch: py3k Changeset: r54473:8f32ba40036f Date: 2012-04-17 16:49 +0200 http://bitbucket.org/pypy/pypy/changeset/8f32ba40036f/ Log:skip micronumpy tests, we are not interested in them right now diff --git a/pypy/module/micronumpy/test/test_base.py b/pypy/module/micronu

[pypy-commit] pypy py3k: merge heads

2012-04-17 Thread antocuni
Author: Antonio Cuni Branch: py3k Changeset: r54478:ddf49f45ca25 Date: 2012-04-17 17:58 +0200 http://bitbucket.org/pypy/pypy/changeset/ddf49f45ca25/ Log:merge heads diff --git a/pypy/module/sys/vm.py b/pypy/module/sys/vm.py --- a/pypy/module/sys/vm.py +++ b/pypy/module/sys/vm.py @@ -114,13 +

[pypy-commit] pypy py3k: we no longer have W_IntObject, but longs

2012-04-17 Thread antocuni
Author: Antonio Cuni Branch: py3k Changeset: r54476:fd87f3f71c7a Date: 2012-04-17 17:14 +0200 http://bitbucket.org/pypy/pypy/changeset/fd87f3f71c7a/ Log:we no longer have W_IntObject, but longs diff --git a/pypy/objspace/std/bytearrayobject.py b/pypy/objspace/std/bytearrayobject.py --- a/py

[pypy-commit] pypy dynamic-specialized-tuple: add tests for C backend

2012-04-17 Thread fijal
Author: Maciej Fijalkowski Branch: dynamic-specialized-tuple Changeset: r54479:1046cc37c7ce Date: 2012-04-17 18:00 +0200 http://bitbucket.org/pypy/pypy/changeset/1046cc37c7ce/ Log:add tests for C backend diff --git a/pypy/rlib/test/test_rerased_raw.py b/pypy/rlib/test/test_rerased_raw.py --

[pypy-commit] pypy dynamic-specialized-tuple: merge

2012-04-17 Thread fijal
Author: Maciej Fijalkowski Branch: dynamic-specialized-tuple Changeset: r54480:91315032494a Date: 2012-04-17 18:01 +0200 http://bitbucket.org/pypy/pypy/changeset/91315032494a/ Log:merge diff --git a/pypy/module/cpyext/sequence.py b/pypy/module/cpyext/sequence.py --- a/pypy/module/cpyext/sequ

[pypy-commit] extradoc extradoc: finish the blog post

2012-04-17 Thread fijal
Author: Maciej Fijalkowski Branch: extradoc Changeset: r4194:f1cb993277b4 Date: 2012-04-17 18:50 +0200 http://bitbucket.org/pypy/extradoc/changeset/f1cb993277b4/ Log:finish the blog post diff --git a/blog/draft/numpy-status-update-3.rst b/blog/draft/numpy-status-update-3.rst --- a/blog/draf

[pypy-commit] extradoc extradoc: merge

2012-04-17 Thread fijal
Author: Maciej Fijalkowski Branch: extradoc Changeset: r4195:e6c1d174b99a Date: 2012-04-17 18:51 +0200 http://bitbucket.org/pypy/extradoc/changeset/e6c1d174b99a/ Log:merge diff --git a/planning/stm.txt b/planning/stm.txt --- a/planning/stm.txt +++ b/planning/stm.txt @@ -8,8 +8,25 @@ | -

[pypy-commit] pypy stm-gc: Debugging.

2012-04-17 Thread arigo
Author: Armin Rigo Branch: stm-gc Changeset: r54481:4643020b9d08 Date: 2012-04-17 19:23 +0200 http://bitbucket.org/pypy/pypy/changeset/4643020b9d08/ Log:Debugging. diff --git a/pypy/rpython/memory/gc/stmtls.py b/pypy/rpython/memory/gc/stmtls.py --- a/pypy/rpython/memory/gc/stmtls.py +++ b/py

[pypy-commit] pypy stm-gc: A failing test.

2012-04-17 Thread arigo
Author: Armin Rigo Branch: stm-gc Changeset: r54482:1bb21a8ad460 Date: 2012-04-17 19:23 +0200 http://bitbucket.org/pypy/pypy/changeset/1bb21a8ad460/ Log:A failing test. diff --git a/pypy/rpython/memory/gc/test/test_stmgc.py b/pypy/rpython/memory/gc/test/test_stmgc.py --- a/pypy/rpython/memo

[pypy-commit] pypy stm-gc: Fixes

2012-04-17 Thread arigo
Author: Armin Rigo Branch: stm-gc Changeset: r54483:91ef9bbd969f Date: 2012-04-17 19:23 +0200 http://bitbucket.org/pypy/pypy/changeset/91ef9bbd969f/ Log:Fixes diff --git a/pypy/translator/c/src/allocator.h b/pypy/translator/c/src/allocator.h --- a/pypy/translator/c/src/allocator.h +++ b/pyp

[pypy-commit] pypy stm-gc: Fix the test of 1bb21a8ad460.

2012-04-17 Thread arigo
Author: Armin Rigo Branch: stm-gc Changeset: r54484:ecb25dcd128e Date: 2012-04-17 19:29 +0200 http://bitbucket.org/pypy/pypy/changeset/ecb25dcd128e/ Log:Fix the test of 1bb21a8ad460. diff --git a/pypy/rpython/memory/gc/stmtls.py b/pypy/rpython/memory/gc/stmtls.py --- a/pypy/rpython/memory/gc

[pypy-commit] pypy stm-gc: Optimize.

2012-04-17 Thread arigo
Author: Armin Rigo Branch: stm-gc Changeset: r54485:6c3b8426808f Date: 2012-04-17 19:36 +0200 http://bitbucket.org/pypy/pypy/changeset/6c3b8426808f/ Log:Optimize. diff --git a/pypy/rpython/memory/gc/stmtls.py b/pypy/rpython/memory/gc/stmtls.py --- a/pypy/rpython/memory/gc/stmtls.py +++ b/pyp

[pypy-commit] pypy default: Fix a crash PyIter_Next() when space.next() raises an exception.

2012-04-17 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: Changeset: r54486:52c0ca3486b4 Date: 2012-04-17 22:28 +0200 http://bitbucket.org/pypy/pypy/changeset/52c0ca3486b4/ Log:Fix a crash PyIter_Next() when space.next() raises an exception. diff --git a/pypy/module/cpyext/iterator.py b/pypy/module/cpyext/itera

[pypy-commit] pypy default: cpyext: fix interpretation of the "direction" parameter of PyUnicode_Tailmatch.

2012-04-17 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: Changeset: r54487:11d96d5e877f Date: 2012-04-17 22:42 +0200 http://bitbucket.org/pypy/pypy/changeset/11d96d5e877f/ Log:cpyext: fix interpretation of the "direction" parameter of PyUnicode_Tailmatch. diff --git a/pypy/module/cpyext/test/test_unico

[pypy-commit] pypy win32-cleanup2: minimal change to call validate_fd in app_posix.py 's fdopen()

2012-04-17 Thread mattip
Author: Matti Picus Branch: win32-cleanup2 Changeset: r54488:2626cbaaeb24 Date: 2012-04-17 23:47 +0300 http://bitbucket.org/pypy/pypy/changeset/2626cbaaeb24/ Log:minimal change to call validate_fd in app_posix.py 's fdopen() diff --git a/pypy/rlib/streamio.py b/pypy/rlib/streamio.py --- a/py

[pypy-commit] pypy win32-cleanup2: fix exception, add test that proves the exception cannot be raised without crashing pypy

2012-04-17 Thread mattip
Author: Matti Picus Branch: win32-cleanup2 Changeset: r54489:e2357d1f1715 Date: 2012-04-18 00:34 +0300 http://bitbucket.org/pypy/pypy/changeset/e2357d1f1715/ Log:fix exception, add test that proves the exception cannot be raised without crashing pypy diff --git a/pypy/rlib/rwin32.py

[pypy-commit] pypy win32-cleanup2: skip on non-windows

2012-04-17 Thread mattip
Author: Matti Picus Branch: win32-cleanup2 Changeset: r54490:1888669f91c0 Date: 2012-04-18 00:49 +0300 http://bitbucket.org/pypy/pypy/changeset/1888669f91c0/ Log:skip on non-windows diff --git a/pypy/rlib/test/test_rwin32.py b/pypy/rlib/test/test_rwin32.py --- a/pypy/rlib/test/test_rwin32.py

[pypy-commit] Notification: pypy

2012-04-17 Thread Bitbucket
You have received a notification from pydcollins. Hi, I forked pypy. My fork is at https://bitbucket.org/pydcollins/pypy. -- Disable notifications at https://bitbucket.org/account/notifications/ ___ pypy-commit mailing list pypy-commit@python.org http:/

[pypy-commit] Notification: pypy

2012-04-17 Thread Bitbucket
You have received a notification from Felipe Cruz. Hi, I forked pypy. My fork is at https://bitbucket.org/loogica/pypy. -- Disable notifications at https://bitbucket.org/account/notifications/ ___ pypy-commit mailing list pypy-commit@python.org http://m