[pypy-commit] pypy stm-thread-2: Add a missing include.

2013-02-22 Thread arigo
Author: Armin Rigo Branch: stm-thread-2 Changeset: r61586:56d318570490 Date: 2013-02-21 10:28 +0100 http://bitbucket.org/pypy/pypy/changeset/56d318570490/ Log:Add a missing include. diff --git a/rpython/rtyper/lltypesystem/llarena.py b/rpython/rtyper/lltypesystem/llarena.py --- a/rpython/rt

[pypy-commit] pypy stm-thread-2: Implement abortinfo and lastabortinfo. This should give a way

2013-02-22 Thread arigo
Author: Armin Rigo Branch: stm-thread-2 Changeset: r61587:63749585b64c Date: 2013-02-21 22:15 +0100 http://bitbucket.org/pypy/pypy/changeset/63749585b64c/ Log:Implement abortinfo and lastabortinfo. This should give a way for the RPython program to register its position, and in case of

[pypy-commit] pypy stm-thread-2: Switch to encoding/decoding following the bittorrent file format.

2013-02-22 Thread arigo
Author: Armin Rigo Branch: stm-thread-2 Changeset: r61588:5813171b4407 Date: 2013-02-22 10:12 +0100 http://bitbucket.org/pypy/pypy/changeset/5813171b4407/ Log:Switch to encoding/decoding following the bittorrent file format. It's a convenient format that requires minimal effort and no

[pypy-commit] lang-smalltalk default: added constants for the different field of MethodClosure

2013-02-22 Thread lwassermann
Author: Lars Wassermann Branch: Changeset: r79:5d56ed9018f7 Date: 2013-02-21 19:42 +0100 http://bitbucket.org/pypy/lang-smalltalk/changeset/5d56ed9018f7/ Log:added constants for the different field of MethodClosure patched some mocking methods to use them for block closure testing d

[pypy-commit] lang-smalltalk default: added two tests for block copy primitive and activation of a BlockClosure with value

2013-02-22 Thread lwassermann
Author: Lars Wassermann Branch: Changeset: r80:816b5ce0926c Date: 2013-02-21 19:46 +0100 http://bitbucket.org/pypy/lang-smalltalk/changeset/816b5ce0926c/ Log:added two tests for block copy primitive and activation of a BlockClosure with value implemented the test diff --git a/spyvm/

[pypy-commit] lang-smalltalk default: refactored newClosure to RPython

2013-02-22 Thread lwassermann
Author: Lars Wassermann Branch: Changeset: r81:0b69628b3e93 Date: 2013-02-21 20:26 +0100 http://bitbucket.org/pypy/lang-smalltalk/changeset/0b69628b3e93/ Log:refactored newClosure to RPython different from the squeak-image, newClosure expects an empty list instead of w_nil, if there

[pypy-commit] lang-smalltalk default: added more tests for block closures

2013-02-22 Thread lwassermann
Author: Lars Wassermann Branch: Changeset: r82:e3c5446909d2 Date: 2013-02-22 10:28 +0100 http://bitbucket.org/pypy/lang-smalltalk/changeset/e3c5446909d2/ Log:added more tests for block closures diff --git a/spyvm/test/test_primitives.py b/spyvm/test/test_primitives.py --- a/spyvm/test/test_

[pypy-commit] lang-smalltalk default: merge

2013-02-22 Thread lwassermann
Author: Lars Wassermann Branch: Changeset: r83:6010b06d29b2 Date: 2013-02-22 10:31 +0100 http://bitbucket.org/pypy/lang-smalltalk/changeset/6010b06d29b2/ Log:merge diff --git a/spyvm/squeakimage.py b/spyvm/squeakimage.py --- a/spyvm/squeakimage.py +++ b/spyvm/squeakimage.py @@ -6,37 +6,33 @

[pypy-commit] pypy stm-thread-2: Fixes

2013-02-22 Thread arigo
Author: Armin Rigo Branch: stm-thread-2 Changeset: r61589:6d0d79768e97 Date: 2013-02-22 10:17 +0100 http://bitbucket.org/pypy/pypy/changeset/6d0d79768e97/ Log:Fixes diff --git a/pypy/module/__pypy__/interp_atomic.py b/pypy/module/__pypy__/interp_atomic.py --- a/pypy/module/__pypy__/interp_a

[pypy-commit] pypy stm-thread-2: Use charp_inspect_abort_info().

2013-02-22 Thread arigo
Author: Armin Rigo Branch: stm-thread-2 Changeset: r61590:0155e5adde15 Date: 2013-02-22 11:14 +0100 http://bitbucket.org/pypy/pypy/changeset/0155e5adde15/ Log:Use charp_inspect_abort_info(). diff --git a/pypy/module/__pypy__/__init__.py b/pypy/module/__pypy__/__init__.py --- a/pypy/module/__

[pypy-commit] pypy stm-thread-2: Fix for fields that actually belong to parent classes

2013-02-22 Thread arigo
Author: Armin Rigo Branch: stm-thread-2 Changeset: r61591:7d37f41f86cb Date: 2013-02-22 11:14 +0100 http://bitbucket.org/pypy/pypy/changeset/7d37f41f86cb/ Log:Fix for fields that actually belong to parent classes diff --git a/rpython/rlib/rstm.py b/rpython/rlib/rstm.py --- a/rpython/rlib/rst

[pypy-commit] pypy default: we need nonneg here

2013-02-22 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r61592:8752e5648e16 Date: 2013-02-22 12:34 +0200 http://bitbucket.org/pypy/pypy/changeset/8752e5648e16/ Log:we need nonneg here diff --git a/rpython/rtyper/lltypesystem/rdict.py b/rpython/rtyper/lltypesystem/rdict.py --- a/rpython/rtyper/lltype

[pypy-commit] pypy default: enforce those things to be unsigned

2013-02-22 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r61593:0e57c3ef3cb4 Date: 2013-02-22 12:43 +0200 http://bitbucket.org/pypy/pypy/changeset/0e57c3ef3cb4/ Log:enforce those things to be unsigned diff --git a/rpython/rlib/objectmodel.py b/rpython/rlib/objectmodel.py --- a/rpython/rlib/objectmodel

[pypy-commit] pypy default: merge

2013-02-22 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r61594:874f26aca217 Date: 2013-02-22 12:44 +0200 http://bitbucket.org/pypy/pypy/changeset/874f26aca217/ Log:merge diff --git a/pypy/doc/ctypes-implementation.rst b/pypy/doc/ctypes-implementation.rst --- a/pypy/doc/ctypes-implementation.rst +++

[pypy-commit] pypy jitframe-on-heap: merge default

2013-02-22 Thread fijal
Author: Maciej Fijalkowski Branch: jitframe-on-heap Changeset: r61595:28dc8f51844f Date: 2013-02-22 12:47 +0200 http://bitbucket.org/pypy/pypy/changeset/28dc8f51844f/ Log:merge default diff --git a/pypy/doc/_ref.txt b/pypy/doc/_ref.txt --- a/pypy/doc/_ref.txt +++ b/pypy/doc/_ref.txt @@ -1,24

[pypy-commit] lang-smalltalk default: (cfbolz, lwassermann around): stop using unwrapped strings as values and just

2013-02-22 Thread cfbolz
Author: Carl Friedrich Bolz Branch: Changeset: r84:235293a3b353 Date: 2013-02-21 15:44 +0100 http://bitbucket.org/pypy/lang-smalltalk/changeset/235293a3b353/ Log:(cfbolz, lwassermann around): stop using unwrapped strings as values and just compare them by identity, which Squeak guara

[pypy-commit] lang-smalltalk default: move logic to the image reader

2013-02-22 Thread cfbolz
Author: Carl Friedrich Bolz Branch: Changeset: r85:19453007f92c Date: 2013-02-21 17:07 +0100 http://bitbucket.org/pypy/lang-smalltalk/changeset/19453007f92c/ Log:move logic to the image reader diff --git a/spyvm/squeakimage.py b/spyvm/squeakimage.py --- a/spyvm/squeakimage.py +++ b/spyvm/sq

[pypy-commit] lang-smalltalk default: merge

2013-02-22 Thread cfbolz
Author: Carl Friedrich Bolz Branch: Changeset: r87:2ece4888b751 Date: 2013-02-22 11:50 +0100 http://bitbucket.org/pypy/lang-smalltalk/changeset/2ece4888b751/ Log:merge diff --git a/spyvm/constants.py b/spyvm/constants.py --- a/spyvm/constants.py +++ b/spyvm/constants.py @@ -38,12 +38,15 @@

[pypy-commit] lang-smalltalk default: move some of the infrastructure to run simple performs from rpython to interpreter.py

2013-02-22 Thread cfbolz
Author: Carl Friedrich Bolz Branch: Changeset: r86:f8aedf50f65c Date: 2013-02-22 11:49 +0100 http://bitbucket.org/pypy/lang-smalltalk/changeset/f8aedf50f65c/ Log:move some of the infrastructure to run simple performs from rpython to interpreter.py diff --git a/spyvm/interpreter.py b

[pypy-commit] pypy py3k: 2to3

2013-02-22 Thread Manuel Jacob
Author: Manuel Jacob Branch: py3k Changeset: r61596:e198fe7b0d06 Date: 2013-02-22 12:12 +0100 http://bitbucket.org/pypy/pypy/changeset/e198fe7b0d06/ Log:2to3 diff --git a/pypy/interpreter/test/test_executioncontext.py b/pypy/interpreter/test/test_executioncontext.py --- a/pypy/interpreter/te

[pypy-commit] pypy jitframe-on-heap: fix alignment issue

2013-02-22 Thread fijal
Author: Maciej Fijalkowski Branch: jitframe-on-heap Changeset: r61597:8adfb7e84b81 Date: 2013-02-22 13:54 +0200 http://bitbucket.org/pypy/pypy/changeset/8adfb7e84b81/ Log:fix alignment issue diff --git a/rpython/jit/backend/llsupport/test/test_gc_integration.py b/rpython/jit/backend/llsuppo

[pypy-commit] pypy stm-thread-2: Test and fix

2013-02-22 Thread arigo
Author: Armin Rigo Branch: stm-thread-2 Changeset: r61598:62ed6ba35d69 Date: 2013-02-22 12:43 +0100 http://bitbucket.org/pypy/pypy/changeset/62ed6ba35d69/ Log:Test and fix diff --git a/rpython/translator/stm/src_stm/rpyintf.c b/rpython/translator/stm/src_stm/rpyintf.c --- a/rpython/translat

[pypy-commit] pypy stm-thread-2: Fix

2013-02-22 Thread arigo
Author: Armin Rigo Branch: stm-thread-2 Changeset: r61599:cf4450c80c67 Date: 2013-02-22 12:50 +0100 http://bitbucket.org/pypy/pypy/changeset/cf4450c80c67/ Log:Fix diff --git a/rpython/translator/stm/funcgen.py b/rpython/translator/stm/funcgen.py --- a/rpython/translator/stm/funcgen.py +++ b

[pypy-commit] pypy default: add __all__ to numpypy,_numpypy

2013-02-22 Thread mattip
Author: mattip Branch: Changeset: r61601:33e6916b90d8 Date: 2013-02-22 13:09 +0200 http://bitbucket.org/pypy/pypy/changeset/33e6916b90d8/ Log:add __all__ to numpypy,_numpypy diff --git a/lib_pypy/numpypy/__init__.py b/lib_pypy/numpypy/__init__.py --- a/lib_pypy/numpypy/__init__.py +++ b/lib

[pypy-commit] pypy default: remove and expose functions differently, fix test to pass

2013-02-22 Thread mattip
Author: mattip Branch: Changeset: r61602:74231eb5eee9 Date: 2013-02-22 14:03 +0200 http://bitbucket.org/pypy/pypy/changeset/74231eb5eee9/ Log:remove and expose functions differently, fix test to pass diff --git a/lib_pypy/numpypy/core/__init__.py b/lib_pypy/numpypy/core/__init__.py --- a/l

[pypy-commit] pypy default: merge heads

2013-02-22 Thread mattip
Author: mattip Branch: Changeset: r61603:f5e56471a998 Date: 2013-02-22 14:43 +0200 http://bitbucket.org/pypy/pypy/changeset/f5e56471a998/ Log:merge heads diff --git a/rpython/rlib/objectmodel.py b/rpython/rlib/objectmodel.py --- a/rpython/rlib/objectmodel.py +++ b/rpython/rlib/objectmodel.p

[pypy-commit] cffi release-0.5: Mark the release 0.5.

2013-02-22 Thread arigo
Author: Armin Rigo Branch: release-0.5 Changeset: r1162:614a488a6ac5 Date: 2013-02-22 14:02 +0100 http://bitbucket.org/cffi/cffi/changeset/614a488a6ac5/ Log:Mark the release 0.5. ___ pypy-commit mailing list [email protected] http://mail.pytho

[pypy-commit] cffi default: Skip running this file on top of PyPy.

2013-02-22 Thread arigo
Author: Armin Rigo Branch: Changeset: r1163:b5273fb333c4 Date: 2013-02-22 14:09 +0100 http://bitbucket.org/cffi/cffi/changeset/b5273fb333c4/ Log:Skip running this file on top of PyPy. diff --git a/c/test_c.py b/c/test_c.py --- a/c/test_c.py +++ b/c/test_c.py @@ -1,6 +1,9 @@ import py def

[pypy-commit] cffi default: (lazka, arigo) Change dlopen() to accept either a full path or a library

2013-02-22 Thread arigo
Author: Armin Rigo Branch: Changeset: r1164:f0a4aaf197fe Date: 2013-02-22 14:19 +0100 http://bitbucket.org/cffi/cffi/changeset/f0a4aaf197fe/ Log:(lazka, arigo) Change dlopen() to accept either a full path or a library name. diff --git a/cffi/api.py b/cffi/api.py --- a/cffi/api.py ++

[pypy-commit] pypy stm-thread-2: Test and fix

2013-02-22 Thread arigo
Author: Armin Rigo Branch: stm-thread-2 Changeset: r61605:6f3fb622e2f6 Date: 2013-02-22 13:41 +0100 http://bitbucket.org/pypy/pypy/changeset/6f3fb622e2f6/ Log:Test and fix diff --git a/pypy/module/__pypy__/interp_atomic.py b/pypy/module/__pypy__/interp_atomic.py --- a/pypy/module/__pypy__/i

[pypy-commit] pypy stm-thread-2: Don't show the hidden_applevel frames.

2013-02-22 Thread arigo
Author: Armin Rigo Branch: stm-thread-2 Changeset: r61606:b7e9b01e26eb Date: 2013-02-22 14:22 +0100 http://bitbucket.org/pypy/pypy/changeset/b7e9b01e26eb/ Log:Don't show the hidden_applevel frames. diff --git a/pypy/module/thread/stm.py b/pypy/module/thread/stm.py --- a/pypy/module/thread/st

[pypy-commit] pypy refine-testrunner: some whitespace fixes

2013-02-22 Thread RonnyPfannschmidt
Author: Ronny Pfannschmidt Branch: refine-testrunner Changeset: r61607:6e6b7860748d Date: 2013-02-22 14:19 +0100 http://bitbucket.org/pypy/pypy/changeset/6e6b7860748d/ Log:some whitespace fixes diff --git a/testrunner/runner.py b/testrunner/runner.py --- a/testrunner/runner.py +++ b/testrunn

[pypy-commit] pypy refine-testrunner: reenable junitxml output

2013-02-22 Thread RonnyPfannschmidt
Author: Ronny Pfannschmidt Branch: refine-testrunner Changeset: r61608:7e90c4f418c3 Date: 2013-02-22 14:32 +0100 http://bitbucket.org/pypy/pypy/changeset/7e90c4f418c3/ Log:reenable junitxml output diff --git a/testrunner/runner.py b/testrunner/runner.py --- a/testrunner/runner.py +++ b/testr

[pypy-commit] pypy default: Add a specific implementation of io.BufferedRandom.readline()

2013-02-22 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: Changeset: r61609:fc116fc3fc9a Date: 2013-02-19 15:43 +0100 http://bitbucket.org/pypy/pypy/changeset/fc116fc3fc9a/ Log:Add a specific implementation of io.BufferedRandom.readline() it is most probably faster than the all-purpose IOBase.readline.

[pypy-commit] pypy default: Test and fix

2013-02-22 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: Changeset: r61610:19d28dd680a1 Date: 2013-02-22 15:37 +0100 http://bitbucket.org/pypy/pypy/changeset/19d28dd680a1/ Log:Test and fix diff --git a/pypy/module/_io/interp_bufferedio.py b/pypy/module/_io/interp_bufferedio.py --- a/pypy/module/_io/interp_buf

[pypy-commit] cffi default: (lazka) improve the test, and fix a typo (bad arigo)

2013-02-22 Thread arigo
Author: Armin Rigo Branch: Changeset: r1165:54a7e200479b Date: 2013-02-22 16:40 +0100 http://bitbucket.org/cffi/cffi/changeset/54a7e200479b/ Log:(lazka) improve the test, and fix a typo (bad arigo) diff --git a/testing/test_function.py b/testing/test_function.py --- a/testing/test_function.

[pypy-commit] pypy default: Fix enumerating oo unicode rstrs and add whatsnew.

2013-02-22 Thread jerith
Author: Jeremy Thurgood Branch: Changeset: r61612:e4ab0b234c2b Date: 2013-02-22 17:47 +0200 http://bitbucket.org/pypy/pypy/changeset/e4ab0b234c2b/ Log:Fix enumerating oo unicode rstrs and add whatsnew. diff --git a/pypy/doc/whatsnew-head.rst b/pypy/doc/whatsnew-head.rst --- a/pypy/doc/whats

[pypy-commit] pypy default: Fix enumerating oo rlists.

2013-02-22 Thread jerith
Author: Jeremy Thurgood Branch: Changeset: r61611:12bfeabef144 Date: 2013-02-22 17:20 +0200 http://bitbucket.org/pypy/pypy/changeset/12bfeabef144/ Log:Fix enumerating oo rlists. diff --git a/rpython/rtyper/ootypesystem/rlist.py b/rpython/rtyper/ootypesystem/rlist.py --- a/rpython/rtyper/oo

[pypy-commit] pypy missing-os-functions: Correctly detects the presence of fchmod and fchown.

2013-02-22 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: missing-os-functions Changeset: r61614:5e890c5dac82 Date: 2013-02-22 16:57 +0100 http://bitbucket.org/pypy/pypy/changeset/5e890c5dac82/ Log:Correctly detects the presence of fchmod and fchown. Tests run and pass even with an old pypy which does (ye

[pypy-commit] pypy default: Add the new readline implementation to BufferedReader as well

2013-02-22 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: Changeset: r61615:2f19cd9ecb9c Date: 2013-02-22 17:16 +0100 http://bitbucket.org/pypy/pypy/changeset/2f19cd9ecb9c/ Log:Add the new readline implementation to BufferedReader as well diff --git a/pypy/module/_io/interp_bufferedio.py b/pypy/module/_io/inte

[pypy-commit] pypy default: some misses

2013-02-22 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r61616:47700c7e20d3 Date: 2013-02-22 18:21 +0200 http://bitbucket.org/pypy/pypy/changeset/47700c7e20d3/ Log:some misses diff --git a/rpython/rtyper/lltypesystem/rdict.py b/rpython/rtyper/lltypesystem/rdict.py --- a/rpython/rtyper/lltypesystem/r

[pypy-commit] pypy default: merge

2013-02-22 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r61617:306c896faeb1 Date: 2013-02-22 18:22 +0200 http://bitbucket.org/pypy/pypy/changeset/306c896faeb1/ Log:merge diff --git a/pypy/doc/whatsnew-head.rst b/pypy/doc/whatsnew-head.rst --- a/pypy/doc/whatsnew-head.rst +++ b/pypy/doc/whatsnew-head.

[pypy-commit] pypy stm-thread-2: Keep the abort info corresponding to the longest aborted transaction,

2013-02-22 Thread arigo
Author: Armin Rigo Branch: stm-thread-2 Changeset: r61619:181f9b1e8484 Date: 2013-02-22 17:03 +0100 http://bitbucket.org/pypy/pypy/changeset/181f9b1e8484/ Log:Keep the abort info corresponding to the longest aborted transaction, in case there are several aborts before charp_in

[pypy-commit] pypy stm-thread-2: Extend the last_abort_info with bits and pieces from the tx_descriptor

2013-02-22 Thread arigo
Author: Armin Rigo Branch: stm-thread-2 Changeset: r61618:e8d90c408313 Date: 2013-02-22 16:33 +0100 http://bitbucket.org/pypy/pypy/changeset/e8d90c408313/ Log:Extend the last_abort_info with bits and pieces from the tx_descriptor as well as a timing of the real time lost in the

[pypy-commit] pypy stm-thread-2: Tweaks

2013-02-22 Thread arigo
Author: Armin Rigo Branch: stm-thread-2 Changeset: r61620:166e672afd5d Date: 2013-02-22 17:05 +0100 http://bitbucket.org/pypy/pypy/changeset/166e672afd5d/ Log:Tweaks diff --git a/lib_pypy/transaction.py b/lib_pypy/transaction.py --- a/lib_pypy/transaction.py +++ b/lib_pypy/transaction.py @@

[pypy-commit] pypy stm-thread-2: Write the traceback-on-abort logic. The lnotab handling needs fixing.

2013-02-22 Thread arigo
Author: Armin Rigo Branch: stm-thread-2 Changeset: r61621:8d8fb39ff944 Date: 2013-02-22 17:49 +0100 http://bitbucket.org/pypy/pypy/changeset/8d8fb39ff944/ Log:Write the traceback-on-abort logic. The lnotab handling needs fixing. diff --git a/lib_pypy/transaction.py b/lib_pypy/transac

[pypy-commit] pypy default: an attempt to fix the translation

2013-02-22 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r61623:82aec8b61b1d Date: 2013-02-22 18:58 +0200 http://bitbucket.org/pypy/pypy/changeset/82aec8b61b1d/ Log:an attempt to fix the translation diff --git a/rpython/rtyper/lltypesystem/rdict.py b/rpython/rtyper/lltypesystem/rdict.py --- a/rpython

[pypy-commit] pypy default: merge and attempt to fix it

2013-02-22 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r61624:5c003abc38f8 Date: 2013-02-22 18:59 +0200 http://bitbucket.org/pypy/pypy/changeset/5c003abc38f8/ Log:merge and attempt to fix it ___ pypy-commit mailing list [email protected] http://mail.p

[pypy-commit] pypy default: Rollback 47700c7e20d3

2013-02-22 Thread alex_gaynor
Author: Alex Gaynor Branch: Changeset: r61622:931450125526 Date: 2013-02-22 08:56 -0800 http://bitbucket.org/pypy/pypy/changeset/931450125526/ Log:Rollback 47700c7e20d3 diff --git a/rpython/rtyper/lltypesystem/rdict.py b/rpython/rtyper/lltypesystem/rdict.py --- a/rpython/rtyper/lltypesyste

[pypy-commit] pypy default: give up and use r_uint here

2013-02-22 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r61625:4c2efe56c1db Date: 2013-02-22 19:39 +0200 http://bitbucket.org/pypy/pypy/changeset/4c2efe56c1db/ Log:give up and use r_uint here diff --git a/rpython/rtyper/lltypesystem/rdict.py b/rpython/rtyper/lltypesystem/rdict.py --- a/rpython/rtype

[pypy-commit] pypy stm-thread-2: Fix the logic.

2013-02-22 Thread arigo
Author: Armin Rigo Branch: stm-thread-2 Changeset: r61626:0c01fc86d431 Date: 2013-02-22 21:28 +0100 http://bitbucket.org/pypy/pypy/changeset/0c01fc86d431/ Log:Fix the logic. diff --git a/lib_pypy/transaction.py b/lib_pypy/transaction.py --- a/lib_pypy/transaction.py +++ b/lib_pypy/transactio

[pypy-commit] pypy py3k: cpython issue8202: include -m in the initial argv (more like -c does)

2013-02-22 Thread pjenvey
Author: Philip Jenvey Branch: py3k Changeset: r61627:680b7dc2e00a Date: 2013-02-22 15:21 -0800 http://bitbucket.org/pypy/pypy/changeset/680b7dc2e00a/ Log:cpython issue8202: include -m in the initial argv (more like -c does) diff --git a/pypy/interpreter/app_main.py b/pypy/interpreter

[pypy-commit] pypy py3k: add sys._xoptions

2013-02-22 Thread pjenvey
Author: Philip Jenvey Branch: py3k Changeset: r61628:5fae4dd9855f Date: 2013-02-22 15:28 -0800 http://bitbucket.org/pypy/pypy/changeset/5fae4dd9855f/ Log:add sys._xoptions diff --git a/pypy/interpreter/app_main.py b/pypy/interpreter/app_main.py --- a/pypy/interpreter/app_main.py +++ b/pypy/i

[pypy-commit] pypy default: unused imports

2013-02-22 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r61629:9628d130c23a Date: 2013-02-22 19:12 -0500 http://bitbucket.org/pypy/pypy/changeset/9628d130c23a/ Log:unused imports diff --git a/rpython/rtyper/lltypesystem/rdict.py b/rpython/rtyper/lltypesystem/rdict.py --- a/rpython/rtyper/lltypesystem/rdic

[pypy-commit] pypy default: fix whatsnew

2013-02-22 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r61630:020ca3b84fdb Date: 2013-02-22 19:22 -0500 http://bitbucket.org/pypy/pypy/changeset/020ca3b84fdb/ Log:fix whatsnew diff --git a/pypy/doc/whatsnew-head.rst b/pypy/doc/whatsnew-head.rst --- a/pypy/doc/whatsnew-head.rst +++ b/pypy/doc/whatsnew-head

[pypy-commit] pypy default: fix b82871fad050: the validate_fd is done by ll_os calls

2013-02-22 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r61631:a9b2317162ca Date: 2013-02-22 19:36 -0500 http://bitbucket.org/pypy/pypy/changeset/a9b2317162ca/ Log:fix b82871fad050: the validate_fd is done by ll_os calls diff --git a/pypy/module/_io/interp_fileio.py b/pypy/module/_io/interp_fileio.py --- a

[pypy-commit] pypy default: Fix

2013-02-22 Thread alex_gaynor
Author: Alex Gaynor Branch: Changeset: r61632:79705a5e9d37 Date: 2013-02-22 16:41 -0800 http://bitbucket.org/pypy/pypy/changeset/79705a5e9d37/ Log:Fix diff --git a/rpython/rtyper/lltypesystem/rdict.py b/rpython/rtyper/lltypesystem/rdict.py --- a/rpython/rtyper/lltypesystem/rdict.py +++ b/r

[pypy-commit] pypy default: a more correct simplification for this import

2013-02-22 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r61633:25d39ec60174 Date: 2013-02-22 19:55 -0500 http://bitbucket.org/pypy/pypy/changeset/25d39ec60174/ Log:a more correct simplification for this import diff --git a/rpython/rtyper/lltypesystem/rdict.py b/rpython/rtyper/lltypesystem/rdict.py --- a/r

[pypy-commit] pypy default: also unused imports

2013-02-22 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r61634:84511ebb7104 Date: 2013-02-22 20:02 -0500 http://bitbucket.org/pypy/pypy/changeset/84511ebb7104/ Log:also unused imports diff --git a/rpython/rtyper/ootypesystem/rlist.py b/rpython/rtyper/ootypesystem/rlist.py --- a/rpython/rtyper/ootypesystem

[pypy-commit] pypy default: consolidate duplicate numpypy implementations of sum/min/max

2013-02-22 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r61635:df3dbf3213d3 Date: 2013-02-22 21:25 -0500 http://bitbucket.org/pypy/pypy/changeset/df3dbf3213d3/ Log:consolidate duplicate numpypy implementations of sum/min/max diff --git a/lib_pypy/numpypy/__init__.py b/lib_pypy/numpypy/__init__.py --- a/lib

[pypy-commit] pypy default: add this test for numpypy.sum also

2013-02-22 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r61636:a6ca90ce76e9 Date: 2013-02-22 21:38 -0500 http://bitbucket.org/pypy/pypy/changeset/a6ca90ce76e9/ Log:add this test for numpypy.sum also diff --git a/pypy/module/test_lib_pypy/numpypy/core/test_fromnumeric.py b/pypy/module/test_lib_pypy/numpypy

[pypy-commit] pypy default: update numarray min/max tests to show why the app-level workaround is the wrong approach

2013-02-22 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r61637:25681452af3c Date: 2013-02-22 21:47 -0500 http://bitbucket.org/pypy/pypy/changeset/25681452af3c/ Log:update numarray min/max tests to show why the app-level workaround is the wrong approach diff --git a/pypy/module/micronumpy/test/test_

[pypy-commit] pypy py3k: support __context__ and __traceback__, be stricter about __cause__

2013-02-22 Thread pjenvey
Author: Philip Jenvey Branch: py3k Changeset: r61638:f2d371471588 Date: 2013-02-22 20:26 -0800 http://bitbucket.org/pypy/pypy/changeset/f2d371471588/ Log:support __context__ and __traceback__, be stricter about __cause__ diff --git a/pypy/interpreter/error.py b/pypy/interpreter/error.py ---

[pypy-commit] pypy default: move _numpypy.identity to numpypy.core.numeric

2013-02-22 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r61639:88878ea32353 Date: 2013-02-23 00:50 -0500 http://bitbucket.org/pypy/pypy/changeset/88878ea32353/ Log:move _numpypy.identity to numpypy.core.numeric diff --git a/lib_pypy/numpypy/core/numeric.py b/lib_pypy/numpypy/core/numeric.py --- a/lib_pypy/

[pypy-commit] pypy default: move _numpypy.eye to numpypy.lib.twodim_base

2013-02-22 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r61641:79a8a52dba4d Date: 2013-02-23 01:30 -0500 http://bitbucket.org/pypy/pypy/changeset/79a8a52dba4d/ Log:move _numpypy.eye to numpypy.lib.twodim_base diff --git a/lib_pypy/numpypy/core/numeric.py b/lib_pypy/numpypy/core/numeric.py --- a/lib_pypy/nu

[pypy-commit] pypy default: move _numpypy.average to numpypy.lib.function_base

2013-02-22 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r61640:5e8977235753 Date: 2013-02-23 01:19 -0500 http://bitbucket.org/pypy/pypy/changeset/5e8977235753/ Log:move _numpypy.average to numpypy.lib.function_base diff --git a/lib_pypy/numpypy/__init__.py b/lib_pypy/numpypy/__init__.py --- a/lib_pypy/nump

[pypy-commit] pypy default: test and fix for passing out=None to ndarray.clip/choose

2013-02-22 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r61642:34f8c678ef62 Date: 2013-02-23 02:03 -0500 http://bitbucket.org/pypy/pypy/changeset/34f8c678ef62/ Log:test and fix for passing out=None to ndarray.clip/choose diff --git a/pypy/module/micronumpy/interp_numarray.py b/pypy/module/micronumpy/inter

[pypy-commit] pypy default: enable and test numpypy.clip

2013-02-22 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r61643:affc77ddf372 Date: 2013-02-23 02:06 -0500 http://bitbucket.org/pypy/pypy/changeset/affc77ddf372/ Log:enable and test numpypy.clip diff --git a/lib_pypy/numpypy/core/fromnumeric.py b/lib_pypy/numpypy/core/fromnumeric.py --- a/lib_pypy/numpypy/c

[pypy-commit] pypy default: some pep8 and dead import cleanups to _cffi_backend

2013-02-22 Thread alex_gaynor
Author: Alex Gaynor Branch: Changeset: r61644:e921c3cbf287 Date: 2013-02-22 23:27 -0800 http://bitbucket.org/pypy/pypy/changeset/e921c3cbf287/ Log:some pep8 and dead import cleanups to _cffi_backend diff --git a/pypy/module/_cffi_backend/cbuffer.py b/pypy/module/_cffi_backend/cbuffer.py --

[pypy-commit] pypy default: merged upstream

2013-02-22 Thread alex_gaynor
Author: Alex Gaynor Branch: Changeset: r61645:18b9462c447b Date: 2013-02-22 23:29 -0800 http://bitbucket.org/pypy/pypy/changeset/18b9462c447b/ Log:merged upstream diff --git a/lib_pypy/numpypy/__init__.py b/lib_pypy/numpypy/__init__.py --- a/lib_pypy/numpypy/__init__.py +++ b/lib_pypy/numpy