[pypy-commit] pypy numpy-indexing-by-arrays-2: indexing by bool arrays of the same shape, step 1

2012-01-17 Thread fijal
Author: Maciej Fijalkowski Branch: numpy-indexing-by-arrays-2 Changeset: r51373:bec89443f75e Date: 2012-01-17 10:55 +0200 http://bitbucket.org/pypy/pypy/changeset/bec89443f75e/ Log:indexing by bool arrays of the same shape, step 1 diff --git a/pypy/module/micronumpy/interp_dtype.py b/pypy/m

[pypy-commit] pypy jvm-improvements: Add files generated by PyCharm to .hgignore

2012-01-17 Thread benol
Author: Michal Bendowski Branch: jvm-improvements Changeset: r51374:1afe14470fa3 Date: 2012-01-14 20:18 +0100 http://bitbucket.org/pypy/pypy/changeset/1afe14470fa3/ Log:Add files generated by PyCharm to .hgignore diff --git a/.hgignore b/.hgignore --- a/.hgignore +++ b/.hgignore @@ -2,6 +2,9

[pypy-commit] pypy jvm-improvements: Fix compute_unique_id to support built-ins in ootype.

2012-01-17 Thread benol
Author: Michal Bendowski Branch: jvm-improvements Changeset: r51376:143a2edf9601 Date: 2012-01-11 22:29 +0100 http://bitbucket.org/pypy/pypy/changeset/143a2edf9601/ Log:Fix compute_unique_id to support built-ins in ootype. Otherwise the translation fails because it doesn't know how t

[pypy-commit] pypy jvm-improvements: Fix userspace builders in ootype

2012-01-17 Thread benol
Author: Michal Bendowski Branch: jvm-improvements Changeset: r51375:90cb8d420991 Date: 2012-01-11 22:26 +0100 http://bitbucket.org/pypy/pypy/changeset/90cb8d420991/ Log:Fix userspace builders in ootype Implement the getlength() method of StringBuilders in ootype. diff --git a/pypy/r

[pypy-commit] pypy jvm-improvements: Add a missing cast from Unsigned to UnsignedLongLong in the JVM

2012-01-17 Thread benol
Author: Michal Bendowski Branch: jvm-improvements Changeset: r51378:c59ec9806ac6 Date: 2012-01-14 20:15 +0100 http://bitbucket.org/pypy/pypy/changeset/c59ec9806ac6/ Log:Add a missing cast from Unsigned to UnsignedLongLong in the JVM backend. diff --git a/pypy/translator/jvm/metavm.py

[pypy-commit] pypy jvm-improvements: Declare oo_primitives that should implement some rffi operations.

2012-01-17 Thread benol
Author: Michal Bendowski Branch: jvm-improvements Changeset: r51377:6b650a500d68 Date: 2012-01-14 19:04 +0100 http://bitbucket.org/pypy/pypy/changeset/6b650a500d68/ Log:Declare oo_primitives that should implement some rffi operations. For now the actual implementations are missing, b

[pypy-commit] pypy jvm-improvements: Implemented float2longlong and longlong2float for the JVM.

2012-01-17 Thread benol
Author: Michal Bendowski Branch: jvm-improvements Changeset: r51380:5ba62496112e Date: 2012-01-16 00:56 +0100 http://bitbucket.org/pypy/pypy/changeset/5ba62496112e/ Log:Implemented float2longlong and longlong2float for the JVM. Also removed the oo_primitive for pypy__rotateLeft - it'

[pypy-commit] pypy jvm-improvements: Handle the 'jit_is_virtual' opcode by always returning False

2012-01-17 Thread benol
Author: Michal Bendowski Branch: jvm-improvements Changeset: r51379:e31e85a8d333 Date: 2012-01-14 19:01 +0100 http://bitbucket.org/pypy/pypy/changeset/e31e85a8d333/ Log:Handle the 'jit_is_virtual' opcode by always returning False diff --git a/pypy/translator/jvm/opcodes.py b/pypy/translator/

[pypy-commit] pypy jvm-improvements: Simpler implementations of float2longlong and longlong2float.

2012-01-17 Thread benol
Author: Michal Bendowski Branch: jvm-improvements Changeset: r51381:79b2113c Date: 2012-01-16 21:19 +0100 http://bitbucket.org/pypy/pypy/changeset/79b2113c/ Log:Simpler implementations of float2longlong and longlong2float. diff --git a/pypy/translator/jvm/src/pypy/PyPy.java b/pypy/t

[pypy-commit] pypy jvm-improvements: Fix the implementation of compute_unique_id for _builtin_type.

2012-01-17 Thread benol
Author: Michal Bendowski Branch: jvm-improvements Changeset: r51382:259f2ab80ae4 Date: 2012-01-16 22:26 +0100 http://bitbucket.org/pypy/pypy/changeset/259f2ab80ae4/ Log:Fix the implementation of compute_unique_id for _builtin_type. diff --git a/pypy/rpython/ootypesystem/ootype.py b/pypy/rpy

[pypy-commit] pypy numpy-indexing-by-arrays-2: add & and |

2012-01-17 Thread fijal
Author: Maciej Fijalkowski Branch: numpy-indexing-by-arrays-2 Changeset: r51383:35596eb33a6f Date: 2012-01-17 11:29 +0200 http://bitbucket.org/pypy/pypy/changeset/35596eb33a6f/ Log:add & and | diff --git a/pypy/module/micronumpy/__init__.py b/pypy/module/micronumpy/__init__.py --- a/pypy/mo

[pypy-commit] pypy ppc-jit-backend: check var.type in make_sure_var_in_reg

2012-01-17 Thread hager
Author: hager Branch: ppc-jit-backend Changeset: r51384:909126039943 Date: 2012-01-17 10:51 +0100 http://bitbucket.org/pypy/pypy/changeset/909126039943/ Log:check var.type in make_sure_var_in_reg diff --git a/pypy/jit/backend/ppc/ppcgen/regalloc.py b/pypy/jit/backend/ppc/ppcgen/regalloc.py

[pypy-commit] pypy numpy-indexing-by-arrays-2: good, fix the test

2012-01-17 Thread fijal
Author: Maciej Fijalkowski Branch: numpy-indexing-by-arrays-2 Changeset: r51385:23d3ca4e7881 Date: 2012-01-17 12:10 +0200 http://bitbucket.org/pypy/pypy/changeset/23d3ca4e7881/ Log:good, fix the test diff --git a/pypy/module/micronumpy/test/test_numarray.py b/pypy/module/micronumpy/test/tes

Re: [pypy-commit] pypy default: A bit experimental - try to preallocate the size of unicode join and remove

2012-01-17 Thread Carl Friedrich Bolz
Comments inline. On 01/16/2012 09:16 PM, fijal wrote: Author: Maciej Fijalkowski Branch: Changeset: r51364:f6b8525d8a10 Date: 2012-01-16 22:14 +0200 http://bitbucket.org/pypy/pypy/changeset/f6b8525d8a10/ Log:A bit experimental - try to preallocate the size of unicode join and remove

[pypy-commit] extradoc extradoc: (all) planning for today

2012-01-17 Thread arigo
Author: Armin Rigo Branch: extradoc Changeset: r4039:eb50533e45ea Date: 2012-01-17 11:11 +0100 http://bitbucket.org/pypy/extradoc/changeset/eb50533e45ea/ Log:(all) planning for today diff --git a/sprintinfo/leysin-winter-2012/planning.txt b/sprintinfo/leysin-winter-2012/planning.txt --- a/s

[pypy-commit] pypy numpy-indexing-by-arrays-2: jit merge points

2012-01-17 Thread fijal
Author: Maciej Fijalkowski Branch: numpy-indexing-by-arrays-2 Changeset: r51386:fed67b9508a6 Date: 2012-01-17 12:15 +0200 http://bitbucket.org/pypy/pypy/changeset/fed67b9508a6/ Log:jit merge points diff --git a/pypy/module/micronumpy/interp_numarray.py b/pypy/module/micronumpy/interp_numarr

[pypy-commit] pypy numpy-indexing-by-arrays-2: fix test_zjit. Skip the test that fails every time someone touches the world.

2012-01-17 Thread fijal
Author: Maciej Fijalkowski Branch: numpy-indexing-by-arrays-2 Changeset: r51387:92eaf5297003 Date: 2012-01-17 12:26 +0200 http://bitbucket.org/pypy/pypy/changeset/92eaf5297003/ Log:fix test_zjit. Skip the test that fails every time someone touches the world. diff --git a/pypy/module/

[pypy-commit] pypy jvm-improvements: close about-to-be-merged branch

2012-01-17 Thread antocuni
Author: Antonio Cuni Branch: jvm-improvements Changeset: r51388:88e6de55b13e Date: 2012-01-17 11:28 +0100 http://bitbucket.org/pypy/pypy/changeset/88e6de55b13e/ Log:close about-to-be-merged branch ___ pypy-commit mailing list [email protected]

[pypy-commit] pypy default: (benol) merge the jvm-improvements branch, which fixes (again :-)) the translation for the JVM backend

2012-01-17 Thread antocuni
Author: Antonio Cuni Branch: Changeset: r51389:c1b66ebfb441 Date: 2012-01-17 11:29 +0100 http://bitbucket.org/pypy/pypy/changeset/c1b66ebfb441/ Log:(benol) merge the jvm-improvements branch, which fixes (again :-)) the translation for the JVM backend diff --git a/.hgignore b/.hgigno

[pypy-commit] pypy numpy-indexing-by-arrays-2: progress on arr[arr_of_bools] = arr

2012-01-17 Thread fijal
Author: Maciej Fijalkowski Branch: numpy-indexing-by-arrays-2 Changeset: r51391:fe9bca1da2b6 Date: 2012-01-17 13:15 +0200 http://bitbucket.org/pypy/pypy/changeset/fe9bca1da2b6/ Log:progress on arr[arr_of_bools] = arr diff --git a/pypy/module/micronumpy/interp_numarray.py b/pypy/module/micro

[pypy-commit] pypy default: a minor improvement

2012-01-17 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r51390:89436d06f0ae Date: 2012-01-17 12:36 +0200 http://bitbucket.org/pypy/pypy/changeset/89436d06f0ae/ Log:a minor improvement diff --git a/pypy/objspace/std/unicodeobject.py b/pypy/objspace/std/unicodeobject.py --- a/pypy/objspace/std/unicode

[pypy-commit] pypy default: merge

2012-01-17 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r51392:81aaf2060a57 Date: 2012-01-17 13:15 +0200 http://bitbucket.org/pypy/pypy/changeset/81aaf2060a57/ Log:merge diff --git a/pypy/objspace/std/unicodeobject.py b/pypy/objspace/std/unicodeobject.py --- a/pypy/objspace/std/unicodeobject.py +++

[pypy-commit] pypy py3k: On linux, set ascii as the default locale if none can be found

2012-01-17 Thread rguillebert
Author: Romain Guillebert Branch: py3k Changeset: r51393:16202ef48d39 Date: 2012-01-17 12:23 +0100 http://bitbucket.org/pypy/pypy/changeset/16202ef48d39/ Log:On linux, set ascii as the default locale if none can be found diff --git a/pypy/module/sys/interp_encoding.py b/pypy/module/sys/inte

[pypy-commit] pypy py3k: Merge heads

2012-01-17 Thread rguillebert
Author: Romain Guillebert Branch: py3k Changeset: r51394:7948fef3ed5a Date: 2012-01-17 12:25 +0100 http://bitbucket.org/pypy/pypy/changeset/7948fef3ed5a/ Log:Merge heads diff --git a/lib_pypy/binascii.py b/lib_pypy/binascii.py --- a/lib_pypy/binascii.py +++ b/lib_pypy/binascii.py @@ -598,68

[pypy-commit] extradoc extradoc: add a section

2012-01-17 Thread fijal
Author: Maciej Fijalkowski Branch: extradoc Changeset: r4040:ebe7ed17d1d5 Date: 2012-01-17 14:20 +0200 http://bitbucket.org/pypy/extradoc/changeset/ebe7ed17d1d5/ Log:add a section diff --git a/planning/micronumpy.txt b/planning/micronumpy.txt --- a/planning/micronumpy.txt +++ b/planning/micr

[pypy-commit] pypy numpy-indexing-by-arrays-2: fix setitem with bool index

2012-01-17 Thread fijal
Author: Maciej Fijalkowski Branch: numpy-indexing-by-arrays-2 Changeset: r51395:6fe5770303bb Date: 2012-01-17 14:28 +0200 http://bitbucket.org/pypy/pypy/changeset/6fe5770303bb/ Log:fix setitem with bool index diff --git a/pypy/module/micronumpy/interp_numarray.py b/pypy/module/micronumpy/in

[pypy-commit] pypy numpy-indexing-by-arrays-2: introduce a jit driver, although it's a bit pointless right now

2012-01-17 Thread fijal
Author: Maciej Fijalkowski Branch: numpy-indexing-by-arrays-2 Changeset: r51396:b48aeb33bb41 Date: 2012-01-17 14:31 +0200 http://bitbucket.org/pypy/pypy/changeset/b48aeb33bb41/ Log:introduce a jit driver, although it's a bit pointless right now diff --git a/pypy/module/micronumpy/interp_numa

[pypy-commit] extradoc extradoc: add two more items

2012-01-17 Thread fijal
Author: Maciej Fijalkowski Branch: extradoc Changeset: r4041:daaef6427a03 Date: 2012-01-17 14:33 +0200 http://bitbucket.org/pypy/extradoc/changeset/daaef6427a03/ Log:add two more items diff --git a/planning/micronumpy.txt b/planning/micronumpy.txt --- a/planning/micronumpy.txt +++ b/planning

[pypy-commit] pypy default: (fijal, cfbolz) improve error reporting

2012-01-17 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r51397:865005356c2f Date: 2012-01-17 14:48 +0200 http://bitbucket.org/pypy/pypy/changeset/865005356c2f/ Log:(fijal, cfbolz) improve error reporting diff --git a/pypy/objspace/std/test/test_unicodeobject.py b/pypy/objspace/std/test/test_unicodeo

[pypy-commit] pypy stm: (antocuni, arigo)

2012-01-17 Thread arigo
Author: Armin Rigo Branch: stm Changeset: r51398:29e9345db0e6 Date: 2012-01-17 11:57 +0100 http://bitbucket.org/pypy/pypy/changeset/29e9345db0e6/ Log:(antocuni, arigo) Test and fix: handle the case of stm_{get,set}field() called after descriptor_init() but outside a transactio

[pypy-commit] pypy default: Use default=False, and enable it only in -O2/O3/Ojit, like the

2012-01-17 Thread arigo
Author: Armin Rigo Branch: Changeset: r51400:3d6e00235d87 Date: 2011-11-05 19:36 +0100 http://bitbucket.org/pypy/pypy/changeset/3d6e00235d87/ Log:Use default=False, and enable it only in -O2/O3/Ojit, like the other optimizations. Fixes an issue if weakrefs are disabled. (tran

[pypy-commit] pypy stm: (antocuni, arigo)

2012-01-17 Thread arigo
Author: Armin Rigo Branch: stm Changeset: r51399:4ef670f3a925 Date: 2012-01-17 12:39 +0100 http://bitbucket.org/pypy/pypy/changeset/4ef670f3a925/ Log:(antocuni, arigo) Refactored targetdemo.py to use the new interface. Allow debug_start/debug_print/debug_stop to work (as lon

[pypy-commit] pypy default: merge heads

2012-01-17 Thread arigo
Author: Armin Rigo Branch: Changeset: r51401:f34f0c11299f Date: 2012-01-17 14:52 +0100 http://bitbucket.org/pypy/pypy/changeset/f34f0c11299f/ Log:merge heads diff --git a/.hgignore b/.hgignore --- a/.hgignore +++ b/.hgignore @@ -2,6 +2,9 @@ *.py[co] *~ .*.swp +.idea +.project +.pydevproj

[pypy-commit] pypy release-1.8.x: Create a release branch

2012-01-17 Thread fijal
Author: Maciej Fijalkowski Branch: release-1.8.x Changeset: r51402:2b32f9c1533d Date: 2012-01-17 17:02 +0200 http://bitbucket.org/pypy/pypy/changeset/2b32f9c1533d/ Log:Create a release branch diff --git a/pypy/module/sys/version.py b/pypy/module/sys/version.py --- a/pypy/module/sys/version.p

[pypy-commit] pypy default: mark patchlevel as well

2012-01-17 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r51403:a4261375b359 Date: 2012-01-17 17:03 +0200 http://bitbucket.org/pypy/pypy/changeset/a4261375b359/ Log:mark patchlevel as well diff --git a/pypy/module/cpyext/include/patchlevel.h b/pypy/module/cpyext/include/patchlevel.h --- a/pypy/module

[pypy-commit] pypy default: update it here as well

2012-01-17 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r51404:96334e1f84f3 Date: 2012-01-17 17:04 +0200 http://bitbucket.org/pypy/pypy/changeset/96334e1f84f3/ Log:update it here as well diff --git a/pypy/module/cpyext/include/patchlevel.h b/pypy/module/cpyext/include/patchlevel.h --- a/pypy/module/

[pypy-commit] pypy py3k: (antocuni,romain) Adapt the test to py3k

2012-01-17 Thread rguillebert
Author: Romain Guillebert Branch: py3k Changeset: r51405:f3ca10db7f5e Date: 2012-01-17 14:44 +0100 http://bitbucket.org/pypy/pypy/changeset/f3ca10db7f5e/ Log:(antocuni,romain) Adapt the test to py3k diff --git a/pypy/interpreter/pyparser/test/test_pyparse.py b/pypy/interpreter/pyparser/test

[pypy-commit] pypy py3k: (antocuni, romain) started to parse the new tuple unpacking (only the case with no parenthesis is implemented so far)

2012-01-17 Thread rguillebert
Author: Romain Guillebert Branch: py3k Changeset: r51406:5dd563b2360f Date: 2012-01-17 16:21 +0100 http://bitbucket.org/pypy/pypy/changeset/5dd563b2360f/ Log:(antocuni, romain) started to parse the new tuple unpacking (only the case with no parenthesis is implemented so far) diff --g

[pypy-commit] pypy py3k: (antocuni, romain): most of the time the parser does not need a space, thus we instantiate it only for the tests (only one) which require it. This is useful because if we chan

2012-01-17 Thread antocuni
Author: Antonio Cuni Branch: py3k Changeset: r51407:dc00842db627 Date: 2012-01-17 17:20 +0100 http://bitbucket.org/pypy/pypy/changeset/dc00842db627/ Log:(antocuni, romain): most of the time the parser does not need a space, thus we instantiate it only for the tests (only one) which

[pypy-commit] benchmarks default: merge

2012-01-17 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r158:77aa6fd8e4ec Date: 2012-01-17 18:08 +0200 http://bitbucket.org/pypy/benchmarks/changeset/77aa6fd8e4ec/ Log:merge diff --git a/own/bm_gzip.py b/own/bm_gzip.py new file mode 100644 --- /dev/null +++ b/own/bm_gzip.py @@ -0,0 +1,45 @@ +import o

[pypy-commit] pypy py3k: bah, if we inherit we run all the test twice

2012-01-17 Thread antocuni
Author: Antonio Cuni Branch: py3k Changeset: r51408:46e3b0574cc8 Date: 2012-01-17 17:28 +0100 http://bitbucket.org/pypy/pypy/changeset/46e3b0574cc8/ Log:bah, if we inherit we run all the test twice diff --git a/pypy/interpreter/pyparser/test/test_pyparse.py b/pypy/interpreter/pyparser/test/

[pypy-commit] pypy py3k: (antocuni, romain) port the py3k grammar for the new tuple unpacking (with parenthesis)

2012-01-17 Thread rguillebert
Author: Romain Guillebert Branch: py3k Changeset: r51409:e110ee00c88b Date: 2012-01-17 17:30 +0100 http://bitbucket.org/pypy/pypy/changeset/e110ee00c88b/ Log:(antocuni, romain) port the py3k grammar for the new tuple unpacking (with parenthesis) diff --git a/pypy/interpreter/pyparser

[pypy-commit] pypy py3k: (antocuni, romain) Add support for the new unpacking at the ast level

2012-01-17 Thread rguillebert
Author: Romain Guillebert Branch: py3k Changeset: r51410:fbf25d09b601 Date: 2012-01-17 18:51 +0100 http://bitbucket.org/pypy/pypy/changeset/fbf25d09b601/ Log:(antocuni,romain) Add support for the new unpacking at the ast level fixed list comprehension diff --git a/pypy/interpreter/as

[pypy-commit] pypy default: move some stuff that's in fromnumeric out of the appnumpy file.

2012-01-17 Thread alex_gaynor
Author: Alex Gaynor Branch: Changeset: r51411:8dea12b8117a Date: 2012-01-17 12:23 -0600 http://bitbucket.org/pypy/pypy/changeset/8dea12b8117a/ Log:move some stuff that's in fromnumeric out of the appnumpy file. diff --git a/lib_pypy/numpypy/test/test_fromnumeric.py b/lib_pypy/numpypy/test/

[pypy-commit] pypy default: oops, fix tests

2012-01-17 Thread alex_gaynor
Author: Alex Gaynor Branch: Changeset: r51412:593bcb6b2e6f Date: 2012-01-17 12:25 -0600 http://bitbucket.org/pypy/pypy/changeset/593bcb6b2e6f/ Log:oops, fix tests diff --git a/lib_pypy/numpypy/test/test_fromnumeric.py b/lib_pypy/numpypy/test/test_fromnumeric.py --- a/lib_pypy/numpypy/test/

[pypy-commit] pypy default: uncomment a test

2012-01-17 Thread alex_gaynor
Author: Alex Gaynor Branch: Changeset: r51413:f602adef8b38 Date: 2012-01-17 12:27 -0600 http://bitbucket.org/pypy/pypy/changeset/f602adef8b38/ Log:uncomment a test diff --git a/lib_pypy/numpypy/test/test_fromnumeric.py b/lib_pypy/numpypy/test/test_fromnumeric.py --- a/lib_pypy/numpypy/test

[pypy-commit] pypy default: split _codecs.lookup_codec into parts with and without a loop, so the JIT can inline most of lookup_codec, eventually it might even make sense to make this codec_search_cac

2012-01-17 Thread alex_gaynor
Author: Alex Gaynor Branch: Changeset: r51414:33bd443587ba Date: 2012-01-17 12:51 -0600 http://bitbucket.org/pypy/pypy/changeset/33bd443587ba/ Log:split _codecs.lookup_codec into parts with and without a loop, so the JIT can inline most of lookup_codec, eventually it might even

[pypy-commit] pypy py3k: Remove more L suffixes and long() calls

2012-01-17 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3k Changeset: r51415:d682184291a6 Date: 2012-01-17 20:25 +0100 http://bitbucket.org/pypy/pypy/changeset/d682184291a6/ Log:Remove more L suffixes and long() calls diff --git a/lib_pypy/_md5.py b/lib_pypy/_md5.py --- a/lib_pypy/_md5.py +++ b/lib_pypy/_md5

[pypy-commit] pypy py3k: Another fix in termios

2012-01-17 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3k Changeset: r51416:03901e509c25 Date: 2012-01-17 20:25 +0100 http://bitbucket.org/pypy/pypy/changeset/03901e509c25/ Log:Another fix in termios diff --git a/pypy/module/termios/interp_termios.py b/pypy/module/termios/interp_termios.py --- a/pypy/modul

[pypy-commit] pypy py3k: Add a reminder about the broken pyrepl.

2012-01-17 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3k Changeset: r51417:2c6715a45957 Date: 2012-01-17 20:26 +0100 http://bitbucket.org/pypy/pypy/changeset/2c6715a45957/ Log:Add a reminder about the broken pyrepl. diff --git a/lib_pypy/_pypy_interact.py b/lib_pypy/_pypy_interact.py --- a/lib_pypy/_pypy_i

[pypy-commit] pypy py3k: ast.py is generated. Add the Starred in Python.asdl, and regenerate

2012-01-17 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3k Changeset: r51418:5b195e604794 Date: 2012-01-17 20:26 +0100 http://bitbucket.org/pypy/pypy/changeset/5b195e604794/ Log:ast.py is generated. Add the Starred in Python.asdl, and regenerate with "python interpreter/astcompiler/tools/asdl_py.py"

[pypy-commit] pypy default: a test and a fix

2012-01-17 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r51419:80570f9631d7 Date: 2012-01-17 21:29 +0200 http://bitbucket.org/pypy/pypy/changeset/80570f9631d7/ Log:a test and a fix diff --git a/pypy/tool/jitlogparser/parser.py b/pypy/tool/jitlogparser/parser.py --- a/pypy/tool/jitlogparser/parser.py

[pypy-commit] pypy default: merge

2012-01-17 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r51420:31b1dbaa7024 Date: 2012-01-17 21:45 +0200 http://bitbucket.org/pypy/pypy/changeset/31b1dbaa7024/ Log:merge diff --git a/lib_pypy/numpypy/test/test_fromnumeric.py b/lib_pypy/numpypy/test/test_fromnumeric.py --- a/lib_pypy/numpypy/test/tes

[pypy-commit] pypy better-jit-hooks-2: dmp creation

2012-01-17 Thread fijal
Author: Maciej Fijalkowski Branch: better-jit-hooks-2 Changeset: r51421:0513eb237097 Date: 2012-01-17 22:25 +0200 http://bitbucket.org/pypy/pypy/changeset/0513eb237097/ Log:dmp creation diff --git a/pypy/module/pypyjit/__init__.py b/pypy/module/pypyjit/__init__.py --- a/pypy/module/pypyjit/_

[pypy-commit] pypy better-jit-hooks-2: implement jithooks

2012-01-17 Thread fijal
Author: Maciej Fijalkowski Branch: better-jit-hooks-2 Changeset: r51422:1ef43f689d9b Date: 2012-01-17 22:45 +0200 http://bitbucket.org/pypy/pypy/changeset/1ef43f689d9b/ Log:implement jithooks diff --git a/pypy/module/pypyjit/interp_resop.py b/pypy/module/pypyjit/interp_resop.py --- a/pypy/m

[pypy-commit] pypy better-jit-hooks-2: Some naming changes.

2012-01-17 Thread alex_gaynor
Author: Alex Gaynor Branch: better-jit-hooks-2 Changeset: r51423:b906e1141138 Date: 2012-01-17 15:17 -0600 http://bitbucket.org/pypy/pypy/changeset/b906e1141138/ Log:Some naming changes. diff --git a/pypy/module/pypyjit/interp_resop.py b/pypy/module/pypyjit/interp_resop.py --- a/pypy/module

[pypy-commit] pypy better-jit-hooks-2: change DMP.descr to DMP.greenkey

2012-01-17 Thread alex_gaynor
Author: Alex Gaynor Branch: better-jit-hooks-2 Changeset: r51424:6354270bb576 Date: 2012-01-17 15:27 -0600 http://bitbucket.org/pypy/pypy/changeset/6354270bb576/ Log:change DMP.descr to DMP.greenkey diff --git a/pypy/module/pypyjit/interp_resop.py b/pypy/module/pypyjit/interp_resop.py --- a

[pypy-commit] pypy better-jit-hooks-2: Close branch for merge

2012-01-17 Thread alex_gaynor
Author: Alex Gaynor Branch: better-jit-hooks-2 Changeset: r51425:886f6fbce8ef Date: 2012-01-17 15:29 -0600 http://bitbucket.org/pypy/pypy/changeset/886f6fbce8ef/ Log:Close branch for merge ___ pypy-commit mailing list [email protected] http://

[pypy-commit] pypy default: (fijal mostly) Merged better-jit-hooks-2.

2012-01-17 Thread alex_gaynor
Author: Alex Gaynor Branch: Changeset: r51426:c6ea8ef23064 Date: 2012-01-17 15:30 -0600 http://bitbucket.org/pypy/pypy/changeset/c6ea8ef23064/ Log:(fijal mostly) Merged better-jit-hooks-2. This exposes metadata about DebugMergePoints in jit hooks, specifically the current by

[pypy-commit] pypy default: Move fromnumeric into core/ subdirectory to follow numpy's layout

2012-01-17 Thread mikefc
Author: mikefc Branch: Changeset: r51428:e4314d54ea7f Date: 2012-01-18 09:10 +1000 http://bitbucket.org/pypy/pypy/changeset/e4314d54ea7f/ Log:Move fromnumeric into core/ subdirectory to follow numpy's layout diff --git a/lib_pypy/numpypy/__init__.py b/lib_pypy/numpypy/__init__.py --- a/lib_p

[pypy-commit] pypy default: Add numpypy.transpose() function to call the array method

2012-01-17 Thread mikefc
Author: mikefc Branch: Changeset: r51429:bc30fb8eed3e Date: 2012-01-18 09:29 +1000 http://bitbucket.org/pypy/pypy/changeset/bc30fb8eed3e/ Log:Add numpypy.transpose() function to call the array method diff --git a/lib_pypy/numpypy/core/fromnumeric.py b/lib_pypy/numpypy/core/fromnumeric.py --

[pypy-commit] pypy default: Use the proper exception for NotImplementedError

2012-01-17 Thread mikefc
Author: mikefc Branch: Changeset: r51430:07bd76d923fd Date: 2012-01-18 09:32 +1000 http://bitbucket.org/pypy/pypy/changeset/07bd76d923fd/ Log:Use the proper exception for NotImplementedError diff --git a/lib_pypy/numpypy/core/fromnumeric.py b/lib_pypy/numpypy/core/fromnumeric.py --- a/lib_p

[pypy-commit] extradoc extradoc: some made up claims

2012-01-17 Thread fijal
Author: Maciej Fijalkowski Branch: extradoc Changeset: r4043:5ddb005ca8e2 Date: 2012-01-18 01:40 +0200 http://bitbucket.org/pypy/extradoc/changeset/5ddb005ca8e2/ Log:some made up claims diff --git a/blog/draft/pypy-2011.rst b/blog/draft/pypy-2011.rst --- a/blog/draft/pypy-2011.rst +++ b/blog

[pypy-commit] benchmarks default: unbreak benchmarks

2012-01-17 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r160:b6376749f6e5 Date: 2012-01-18 01:53 +0200 http://bitbucket.org/pypy/benchmarks/changeset/b6376749f6e5/ Log:unbreak benchmarks diff --git a/benchmarks.py b/benchmarks.py --- a/benchmarks.py +++ b/benchmarks.py @@ -153,7 +153,10 @@ for p

[pypy-commit] extradoc extradoc: start drafting blog post

2012-01-17 Thread fijal
Author: Maciej Fijalkowski Branch: extradoc Changeset: r4042:7288adc71948 Date: 2012-01-18 01:38 +0200 http://bitbucket.org/pypy/extradoc/changeset/7288adc71948/ Log:start drafting blog post diff --git a/blog/draft/pypy-2011.rst b/blog/draft/pypy-2011.rst new file mode 100644 --- /dev/null +

[pypy-commit] pypy matrixmath-dot: merge from default

2012-01-17 Thread mattip
Author: mattip Branch: matrixmath-dot Changeset: r51431:d512cc3a2cf4 Date: 2012-01-17 21:06 +0200 http://bitbucket.org/pypy/pypy/changeset/d512cc3a2cf4/ Log:merge from default diff --git a/.hgignore b/.hgignore --- a/.hgignore +++ b/.hgignore @@ -2,6 +2,9 @@ *.py[co] *~ .*.swp +.idea +.pro

[pypy-commit] pypy matrixmath-dot: passes a test, needs cleanup

2012-01-17 Thread mattip
Author: mattip Branch: matrixmath-dot Changeset: r51432:f62709780578 Date: 2012-01-18 02:22 +0200 http://bitbucket.org/pypy/pypy/changeset/f62709780578/ Log:passes a test, needs cleanup diff --git a/pypy/module/micronumpy/interp_iter.py b/pypy/module/micronumpy/interp_iter.py --- a/pypy/modu