[pypy-commit] pypy default: undo this cleanup from last commit, doesn't match cpython

2013-03-20 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r62543:9f087c4339f8 Date: 2013-03-20 04:01 -0400 http://bitbucket.org/pypy/pypy/changeset/9f087c4339f8/ Log:undo this cleanup from last commit, doesn't match cpython diff --git a/rpython/rlib/rmmap.py b/rpython/rlib/rmmap.py --- a/rpython/rlib/rmmap.p

[pypy-commit] pypy remove-list-smm: fix test

2013-03-20 Thread cfbolz
Author: Carl Friedrich Bolz Branch: remove-list-smm Changeset: r62544:a21cd56a8f5b Date: 2013-03-20 11:42 +0100 http://bitbucket.org/pypy/pypy/changeset/a21cd56a8f5b/ Log:fix test diff --git a/pypy/objspace/std/test/test_liststrategies.py b/pypy/objspace/std/test/test_liststrategies.py ---

[pypy-commit] pypy remove-list-smm: share code between find, contains and remove

2013-03-20 Thread cfbolz
Author: Carl Friedrich Bolz Branch: remove-list-smm Changeset: r62545:7806a754f7d9 Date: 2013-03-20 12:06 +0100 http://bitbucket.org/pypy/pypy/changeset/7806a754f7d9/ Log:share code between find, contains and remove diff --git a/pypy/objspace/std/listobject.py b/pypy/objspace/std/listobject.

[pypy-commit] pypy remove-list-smm: spent some time trying to find out why stuff doesn't translate

2013-03-20 Thread cfbolz
Author: Carl Friedrich Bolz Branch: remove-list-smm Changeset: r62546:85e644c3af16 Date: 2013-03-20 14:17 +0100 http://bitbucket.org/pypy/pypy/changeset/85e644c3af16/ Log:spent some time trying to find out why stuff doesn't translate diff --git a/pypy/objspace/std/listobject.py b/pypy/objspa

[pypy-commit] pypy remove-list-smm: this test is also broken due to the comment of the previous commit

2013-03-20 Thread cfbolz
Author: Carl Friedrich Bolz Branch: remove-list-smm Changeset: r62547:872b9628821a Date: 2013-03-20 14:23 +0100 http://bitbucket.org/pypy/pypy/changeset/872b9628821a/ Log:this test is also broken due to the comment of the previous commit diff --git a/pypy/objspace/std/test/test_listobject.py

[pypy-commit] lang-smalltalk default: changed perform to not suffer from StackOverflow Errors

2013-03-20 Thread lwassermann
Author: Lars Wassermann Branch: Changeset: r223:967479e64bc4 Date: 2013-03-20 14:20 +0100 http://bitbucket.org/pypy/lang-smalltalk/changeset/967479e64bc4/ Log:changed perform to not suffer from StackOverflow Errors fixed the bootstrapped-tests fixed a flaky test among the shadow test

[pypy-commit] lang-smalltalk default: some small changes to make squeakimage.py compilable

2013-03-20 Thread lwassermann
Author: Lars Wassermann Branch: Changeset: r226:e152443ebaf9 Date: 2013-03-19 18:48 +0100 http://bitbucket.org/pypy/lang-smalltalk/changeset/e152443ebaf9/ Log:some small changes to make squeakimage.py compilable diff --git a/spyvm/squeakimage.py b/spyvm/squeakimage.py --- a/spyvm/squeakimag

[pypy-commit] lang-smalltalk default: Removed the second link of W_PointersObject s to their class. Only s_class is maintained.

2013-03-20 Thread lwassermann
Author: Lars Wassermann Branch: Changeset: r225:87d8824f17f5 Date: 2013-03-19 18:20 +0100 http://bitbucket.org/pypy/lang-smalltalk/changeset/87d8824f17f5/ Log:Removed the second link of W_PointersObject s to their class. Only s_class is maintained. diff --git a/spyvm/model.py b/spyv

[pypy-commit] lang-smalltalk default: merged with local branch without any of their changes, because mecurial makes it really hard to loose(remove) commits

2013-03-20 Thread lwassermann
Author: Lars Wassermann Branch: Changeset: r227:a9faabe07327 Date: 2013-03-20 14:53 +0100 http://bitbucket.org/pypy/lang-smalltalk/changeset/a9faabe07327/ Log:merged with local branch without any of their changes, because mecurial makes it really hard to loose(remove) commits __

[pypy-commit] lang-smalltalk default: added the space a w_object is created for to that object

2013-03-20 Thread lwassermann
Author: Lars Wassermann Branch: Changeset: r224:256cc8aa5d3f Date: 2013-03-14 00:13 +0100 http://bitbucket.org/pypy/lang-smalltalk/changeset/256cc8aa5d3f/ Log:added the space a w_object is created for to that object the only exception is W_SmallInteger diff --git a/spyvm/interpreter

[pypy-commit] lang-js default: back array by dict

2013-03-20 Thread stepahn
Author: Stephan Branch: Changeset: r362:6bb16769d0c0 Date: 2013-02-27 20:06 +0100 http://bitbucket.org/pypy/lang-js/changeset/6bb16769d0c0/ Log:back array by dict access array with integer index diff --git a/js/jsobj.py b/js/jsobj.py --- a/js/jsobj.py +++ b/js/jsobj.py @@ -12,10 +12,39 @@

[pypy-commit] lang-js default: optimized array index access

2013-03-20 Thread stepahn
Author: Stephan Branch: Changeset: r364:856ad47ccf75 Date: 2013-02-27 23:40 +0100 http://bitbucket.org/pypy/lang-js/changeset/856ad47ccf75/ Log:optimized array index access diff --git a/js/jsobj.py b/js/jsobj.py --- a/js/jsobj.py +++ b/js/jsobj.py @@ -18,6 +18,14 @@ NOT_ARRAY_INDEX = -1

[pypy-commit] lang-js default: fixed integer to float contamination

2013-03-20 Thread stepahn
Author: Stephan Branch: Changeset: r365:f6a6c15c2f42 Date: 2013-03-20 16:19 +0100 http://bitbucket.org/pypy/lang-js/changeset/f6a6c15c2f42/ Log:fixed integer to float contamination diff --git a/js/baseop.py b/js/baseop.py --- a/js/baseop.py +++ b/js/baseop.py @@ -3,7 +3,7 @@ """ from js

[pypy-commit] lang-js default: added LOAD_MEMBER_DOT alias for LOAD_MEMBER for debugging

2013-03-20 Thread stepahn
Author: Stephan Branch: Changeset: r366:2ee7cb2fc38e Date: 2013-03-20 16:20 +0100 http://bitbucket.org/pypy/lang-js/changeset/2ee7cb2fc38e/ Log:added LOAD_MEMBER_DOT alias for LOAD_MEMBER for debugging diff --git a/js/opcodes.py b/js/opcodes.py --- a/js/opcodes.py +++ b/js/opcodes.py @@ -26

[pypy-commit] lang-js default: use _idx_put in array constructor

2013-03-20 Thread stepahn
Author: Stephan Branch: Changeset: r369:a380e25f0db6 Date: 2013-03-20 16:23 +0100 http://bitbucket.org/pypy/lang-js/changeset/a380e25f0db6/ Log:use _idx_put in array constructor diff --git a/js/jsobj.py b/js/jsobj.py --- a/js/jsobj.py +++ b/js/jsobj.py @@ -1015,13 +1015,13 @@ e

[pypy-commit] lang-js default: removed some annotaitons

2013-03-20 Thread stepahn
Author: Stephan Branch: Changeset: r370:9e9af1fdf61d Date: 2013-03-20 16:23 +0100 http://bitbucket.org/pypy/lang-js/changeset/9e9af1fdf61d/ Log:removed some annotaitons diff --git a/js/jsobj.py b/js/jsobj.py --- a/js/jsobj.py +++ b/js/jsobj.py @@ -1186,7 +1186,6 @@ @enforceargs(int) -@

[pypy-commit] lang-js default: added float jit viewer test

2013-03-20 Thread stepahn
Author: Stephan Branch: Changeset: r371:642c59a0ffd5 Date: 2013-03-20 16:24 +0100 http://bitbucket.org/pypy/lang-js/changeset/642c59a0ffd5/ Log:added float jit viewer test diff --git a/test/jit_view.py b/test/jit_view.py --- a/test/jit_view.py +++ b/test/jit_view.py @@ -48,6 +48,20 @@

[pypy-commit] lang-js default: added array benchmarks

2013-03-20 Thread stepahn
Author: Stephan Branch: Changeset: r361:4cd3183a5d9e Date: 2013-02-27 20:05 +0100 http://bitbucket.org/pypy/lang-js/changeset/4cd3183a5d9e/ Log:added array benchmarks diff --git a/bench/array/run.js b/bench/array/run.js new file mode 100644 --- /dev/null +++ b/bench/array/run.js @@ -0,0 +1,

[pypy-commit] lang-js default: added array trace view samples

2013-03-20 Thread stepahn
Author: Stephan Branch: Changeset: r363:eab8506c2aed Date: 2013-02-27 20:06 +0100 http://bitbucket.org/pypy/lang-js/changeset/eab8506c2aed/ Log:added array trace view samples diff --git a/test/jit_view.py b/test/jit_view.py --- a/test/jit_view.py +++ b/test/jit_view.py @@ -286,3 +286,87 @@

[pypy-commit] lang-js default: use _idx_put in LOAD_ARRAY

2013-03-20 Thread stepahn
Author: Stephan Branch: Changeset: r367:937cc2089ea1 Date: 2013-03-20 16:21 +0100 http://bitbucket.org/pypy/lang-js/changeset/937cc2089ea1/ Log:use _idx_put in LOAD_ARRAY diff --git a/js/opcodes.py b/js/opcodes.py --- a/js/opcodes.py +++ b/js/opcodes.py @@ -179,7 +179,7 @@ list_w

[pypy-commit] lang-js default: pass function name into printable location

2013-03-20 Thread stepahn
Author: Stephan Branch: Changeset: r368:d4640c906e90 Date: 2013-03-20 16:22 +0100 http://bitbucket.org/pypy/lang-js/changeset/d4640c906e90/ Log:pass function name into printable location diff --git a/js/functions.py b/js/functions.py --- a/js/functions.py +++ b/js/functions.py @@ -160,6 +16

[pypy-commit] pypy default: fix typo

2013-03-20 Thread cfbolz
Author: Carl Friedrich Bolz Branch: Changeset: r62548:4f5882ea651d Date: 2013-03-18 22:30 +0100 http://bitbucket.org/pypy/pypy/changeset/4f5882ea651d/ Log:fix typo diff --git a/rpython/jit/metainterp/optimizeopt/heap.py b/rpython/jit/metainterp/optimizeopt/heap.py --- a/rpython/jit/metaint

[pypy-commit] pypy default: merge

2013-03-20 Thread cfbolz
Author: Carl Friedrich Bolz Branch: Changeset: r62549:9b711f742ce4 Date: 2013-03-20 16:41 +0100 http://bitbucket.org/pypy/pypy/changeset/9b711f742ce4/ Log:merge diff --git a/rpython/jit/metainterp/optimizeopt/heap.py b/rpython/jit/metainterp/optimizeopt/heap.py --- a/rpython/jit/metainterp

[pypy-commit] pypy default: apparently kwargs.setdefault is a thing people use (e.g. the pylib)

2013-03-20 Thread cfbolz
Author: Carl Friedrich Bolz Branch: Changeset: r62550:80dedbfdeecb Date: 2013-03-20 17:40 +0100 http://bitbucket.org/pypy/pypy/changeset/80dedbfdeecb/ Log:apparently kwargs.setdefault is a thing people use (e.g. the pylib) diff --git a/pypy/objspace/std/kwargsdict.py b/pypy/objspace/std/kwa

[pypy-commit] pypy remove-list-smm: some whitespace

2013-03-20 Thread fijal
Author: Maciej Fijalkowski Branch: remove-list-smm Changeset: r62551:c89ecff7b525 Date: 2013-03-20 10:34 -0700 http://bitbucket.org/pypy/pypy/changeset/c89ecff7b525/ Log:some whitespace diff --git a/pypy/objspace/std/multimethod.py b/pypy/objspace/std/multimethod.py --- a/pypy/objspace/std/m

[pypy-commit] buildbot default: use xerxes

2013-03-20 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r742:bc921d1e6a36 Date: 2013-03-20 11:53 -0700 http://bitbucket.org/pypy/buildbot/changeset/bc921d1e6a36/ Log:use xerxes diff --git a/bot2/pypybuildbot/master.py b/bot2/pypybuildbot/master.py --- a/bot2/pypybuildbot/master.py +++ b/bot2/pypybuil

[pypy-commit] pypy default: make namedtuple fast

2013-03-20 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r62552:8bd3b5c5365d Date: 2013-03-20 12:14 -0700 http://bitbucket.org/pypy/pypy/changeset/8bd3b5c5365d/ Log:make namedtuple fast diff --git a/lib-python/2/collections.py b/lib-python/2/collections.py --- a/lib-python/2/collections.py +++ b/lib-p

[pypy-commit] pypy longdouble: preliminary implementation of long double

2013-03-20 Thread rlamy
Author: Ronan Lamy Branch: longdouble Changeset: r62553:e5b66e73b23e Date: 2013-03-20 20:00 + http://bitbucket.org/pypy/pypy/changeset/e5b66e73b23e/ Log:preliminary implementation of long double diff --git a/rpython/annotator/binaryop.py b/rpython/annotator/binaryop.py --- a/rpython/anno

[pypy-commit] pypy default: the workaround for translation is only needed for setitem_str, not setitem

2013-03-20 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r62554:29eb449022f8 Date: 2013-03-20 16:03 -0400 http://bitbucket.org/pypy/pypy/changeset/29eb449022f8/ Log:the workaround for translation is only needed for setitem_str, not setitem diff --git a/pypy/objspace/std/dictmultiobject.py b/pypy/ob

[pypy-commit] pypy str-dtype-improvement: test, fix concatenate two str arrays

2013-03-20 Thread mattip
Author: Matti Picus Branch: str-dtype-improvement Changeset: r62556:ee54a9e3ac5a Date: 2013-03-20 11:44 -0700 http://bitbucket.org/pypy/pypy/changeset/ee54a9e3ac5a/ Log:test, fix concatenate two str arrays diff --git a/pypy/module/micronumpy/interp_arrayops.py b/pypy/module/micronumpy/inter

[pypy-commit] pypy str-dtype-improvement: remove redundant check

2013-03-20 Thread mattip
Author: Matti Picus Branch: str-dtype-improvement Changeset: r62558:7341166639d1 Date: 2013-03-20 12:06 -0700 http://bitbucket.org/pypy/pypy/changeset/7341166639d1/ Log:remove redundant check diff --git a/pypy/module/micronumpy/interp_arrayops.py b/pypy/module/micronumpy/interp_arrayops.py

[pypy-commit] pypy str-dtype-improvement: close about-to-be-merged branch

2013-03-20 Thread mattip
Author: Matti Picus Branch: str-dtype-improvement Changeset: r62560:ffa7dd14b213 Date: 2013-03-20 12:46 -0700 http://bitbucket.org/pypy/pypy/changeset/ffa7dd14b213/ Log:close about-to-be-merged branch ___ pypy-commit mailing list pypy-commit@python

[pypy-commit] pypy default: merge str-dtype-improvement which allows concatenation of str and numerical arrays

2013-03-20 Thread mattip
Author: Matti Picus Branch: Changeset: r62561:0222524b2c0d Date: 2013-03-20 12:48 -0700 http://bitbucket.org/pypy/pypy/changeset/0222524b2c0d/ Log:merge str-dtype-improvement which allows concatenation of str and numerical arrays diff --git a/pypy/module/micronumpy/arrayimpl/concret

[pypy-commit] pypy default: document branch

2013-03-20 Thread mattip
Author: Matti Picus Branch: Changeset: r62563:39ad5d9ff56d Date: 2013-03-20 13:13 -0700 http://bitbucket.org/pypy/pypy/changeset/39ad5d9ff56d/ Log:document branch diff --git a/pypy/doc/whatsnew-head.rst b/pypy/doc/whatsnew-head.rst --- a/pypy/doc/whatsnew-head.rst +++ b/pypy/doc/whatsnew-he

[pypy-commit] pypy str-dtype-improvement: check result from raises in tests

2013-03-20 Thread mattip
Author: Matti Picus Branch: str-dtype-improvement Changeset: r62557:ab13ea6f9492 Date: 2013-03-20 11:57 -0700 http://bitbucket.org/pypy/pypy/changeset/ab13ea6f9492/ Log:check result from raises in tests diff --git a/pypy/module/micronumpy/test/test_numarray.py b/pypy/module/micronumpy/test/

[pypy-commit] pypy str-dtype-improvement: improve test coverage

2013-03-20 Thread mattip
Author: Matti Picus Branch: str-dtype-improvement Changeset: r62559:4f6b118f7561 Date: 2013-03-20 12:40 -0700 http://bitbucket.org/pypy/pypy/changeset/4f6b118f7561/ Log:improve test coverage diff --git a/pypy/module/micronumpy/interp_boxes.py b/pypy/module/micronumpy/interp_boxes.py --- a/p

[pypy-commit] pypy default: cleanups and small fixes of str-dtypes-improvement

2013-03-20 Thread mattip
Author: Matti Picus Branch: Changeset: r62562:b9c5e3df5a82 Date: 2013-03-20 13:11 -0700 http://bitbucket.org/pypy/pypy/changeset/b9c5e3df5a82/ Log:cleanups and small fixes of str-dtypes-improvement diff --git a/pypy/module/micronumpy/arrayimpl/scalar.py b/pypy/module/micronumpy/arrayimpl/s

[pypy-commit] pypy default: merge heads

2013-03-20 Thread mattip
Author: Matti Picus Branch: Changeset: r62564:fe2fef48ab4e Date: 2013-03-20 13:15 -0700 http://bitbucket.org/pypy/pypy/changeset/fe2fef48ab4e/ Log:merge heads diff --git a/pypy/objspace/std/dictmultiobject.py b/pypy/objspace/std/dictmultiobject.py --- a/pypy/objspace/std/dictmultiobject.py

[pypy-commit] pypy default: (fijal, alex) Removed spli/ directory,

2013-03-20 Thread alex_gaynor
Author: Alex Gaynor Branch: Changeset: r62565:8ed70c17c0ed Date: 2013-03-20 13:16 -0700 http://bitbucket.org/pypy/pypy/changeset/8ed70c17c0ed/ Log:(fijal, alex) Removed spli/ directory, diff --git a/spli/__init__.py b/spli/__init__.py deleted file mode 100644 diff --git a/spli/examples.py b

[pypy-commit] pypy default: merged upstream

2013-03-20 Thread alex_gaynor
Author: Alex Gaynor Branch: Changeset: r62566:8090d3a2b6db Date: 2013-03-20 13:16 -0700 http://bitbucket.org/pypy/pypy/changeset/8090d3a2b6db/ Log:merged upstream diff --git a/lib-python/2/collections.py b/lib-python/2/collections.py --- a/lib-python/2/collections.py +++ b/lib-python/2/coll

[pypy-commit] pypy default: Remove unused callbench directory

2013-03-20 Thread alex_gaynor
Author: Alex Gaynor Branch: Changeset: r62567:dfeafbb406c6 Date: 2013-03-20 13:19 -0700 http://bitbucket.org/pypy/pypy/changeset/dfeafbb406c6/ Log:Remove unused callbench directory diff --git a/pypy/interpreter/callbench/bltn04.py b/pypy/interpreter/callbench/bltn04.py deleted file mode 10

[pypy-commit] pypy default: (alex, armin): remove unused objspace/proxy

2013-03-20 Thread alex_gaynor
Author: Alex Gaynor Branch: Changeset: r62568:9aaaf0245344 Date: 2013-03-20 13:24 -0700 http://bitbucket.org/pypy/pypy/changeset/9aaaf0245344/ Log:(alex, armin): remove unused objspace/proxy diff --git a/pypy/objspace/proxy.py b/pypy/objspace/proxy.py deleted file mode 100644 --- a/pypy/obj

[pypy-commit] jitviewer default: fixed bridge "name" for "show bridge" link

2013-03-20 Thread aljosa
Author: Aljosa Mohorovic Branch: Changeset: r218:110982753cb2 Date: 2013-03-19 18:22 -0700 http://bitbucket.org/pypy/jitviewer/changeset/110982753cb2/ Log:fixed bridge "name" for "show bridge" link diff --git a/_jitviewer/templates/loop.html b/_jitviewer/templates/loop.html --- a/_jitviewer

[pypy-commit] pypy default: Inline this artificial method again, now that the flow objspace no

2013-03-20 Thread arigo
Author: Armin Rigo Branch: Changeset: r62569:d49d2c9928f0 Date: 2013-03-20 13:32 -0700 http://bitbucket.org/pypy/pypy/changeset/d49d2c9928f0/ Log:Inline this artificial method again, now that the flow objspace no longer subclasses this class anyway. diff --git a/pypy/interpreter/bas

[pypy-commit] pypy default: (alex, armin, fijal): removed unused fset

2013-03-20 Thread alex_gaynor
Author: Alex Gaynor Branch: Changeset: r62570:ce33600acfcf Date: 2013-03-20 13:36 -0700 http://bitbucket.org/pypy/pypy/changeset/ce33600acfcf/ Log:(alex, armin, fijal): removed unused fset diff --git a/rpython/tool/algo/fset.py b/rpython/tool/algo/fset.py deleted file mode 100644 --- a/rpyt

[pypy-commit] pypy default: Removed weird SML file.

2013-03-20 Thread alex_gaynor
Author: Alex Gaynor Branch: Changeset: r62571:96061fd83094 Date: 2013-03-20 13:36 -0700 http://bitbucket.org/pypy/pypy/changeset/96061fd83094/ Log:Removed weird SML file. diff --git a/rpython/tool/algo/BB.sml b/rpython/tool/algo/BB.sml deleted file mode 100644 --- a/rpython/tool/algo/BB.sml

[pypy-commit] pypy default: Removed unused MultiWeakDict

2013-03-20 Thread alex_gaynor
Author: Alex Gaynor Branch: Changeset: r62572:44a31f735006 Date: 2013-03-20 13:37 -0700 http://bitbucket.org/pypy/pypy/changeset/44a31f735006/ Log:Removed unused MultiWeakDict diff --git a/rpython/tool/algo/multiweakdict.py b/rpython/tool/algo/multiweakdict.py deleted file mode 100644 ---

[pypy-commit] pypy default: Updated getting-started-dev.rst doc and fixed some broken links

2013-03-20 Thread tilarids
Author: Sergey Kishchenko Branch: Changeset: r62573:47be70673d5d Date: 2013-03-20 01:19 +0200 http://bitbucket.org/pypy/pypy/changeset/47be70673d5d/ Log:Updated getting-started-dev.rst doc and fixed some broken links * Docs for several RPython env vars were added * translat

[pypy-commit] pypy default: Applied reviewer's comments

2013-03-20 Thread tilarids
Author: Sergey Kishchenko Branch: Changeset: r62574:6833c40c351c Date: 2013-03-20 01:39 +0200 http://bitbucket.org/pypy/pypy/changeset/6833c40c351c/ Log:Applied reviewer's comments diff --git a/pypy/doc/getting-started-dev.rst b/pypy/doc/getting-started-dev.rst --- a/pypy/doc/getting-starte

[pypy-commit] pypy default: One last touch on getting-started-dev.rst

2013-03-20 Thread tilarids
Author: Sergey Kishchenko Branch: Changeset: r62575:d3873f354cb1 Date: 2013-03-20 01:46 +0200 http://bitbucket.org/pypy/pypy/changeset/d3873f354cb1/ Log:One last touch on getting-started-dev.rst diff --git a/pypy/doc/getting-started-dev.rst b/pypy/doc/getting-started-dev.rst --- a/pypy/doc/

[pypy-commit] pypy default: Merged in tilarids/pypy (pull request #140)

2013-03-20 Thread mattip
Author: Matti Picus Branch: Changeset: r62576:cc4bf5491933 Date: 2013-03-20 13:49 -0700 http://bitbucket.org/pypy/pypy/changeset/cc4bf5491933/ Log:Merged in tilarids/pypy (pull request #140) Updated getting-started- dev.rst doc and fixed some broken links diff --git a/pypy/doc/getti

[pypy-commit] pypy reflex-support: do not remove "const" in template parameters

2013-03-20 Thread wlav
Author: Wim Lavrijsen Branch: reflex-support Changeset: r62579:3b0d430e7067 Date: 2013-03-20 13:54 -0700 http://bitbucket.org/pypy/pypy/changeset/3b0d430e7067/ Log:do not remove "const" in template parameters diff --git a/pypy/module/cppyy/helper.py b/pypy/module/cppyy/helper.py --- a/pypy/m

[pypy-commit] pypy reflex-support: add test cases for STL iterators

2013-03-20 Thread wlav
Author: Wim Lavrijsen Branch: reflex-support Changeset: r62577:d2d32efce5d9 Date: 2013-03-20 11:17 -0700 http://bitbucket.org/pypy/pypy/changeset/d2d32efce5d9/ Log:add test cases for STL iterators diff --git a/pypy/module/cppyy/test/test_stltypes.py b/pypy/module/cppyy/test/test_stltypes.py

[pypy-commit] pypy reflex-support: o) finalize stl tests

2013-03-20 Thread wlav
Author: Wim Lavrijsen Branch: reflex-support Changeset: r62578:071dc7ce6101 Date: 2013-03-20 13:11 -0700 http://bitbucket.org/pypy/pypy/changeset/071dc7ce6101/ Log:o) finalize stl tests o) allow pointers to unknown classes to execute as void* diff --git a/pypy/module/cppyy/executor.p

[pypy-commit] extradoc extradoc: talk at invitae

2013-03-20 Thread fijal
Author: Maciej Fijalkowski Branch: extradoc Changeset: r4962:c78170433833 Date: 2013-03-20 14:25 -0700 http://bitbucket.org/pypy/extradoc/changeset/c78170433833/ Log:talk at invitae diff --git a/talk/sftour2013/invitae/Makefile b/talk/sftour2013/invitae/Makefile new file mode 100644 --- /dev

[pypy-commit] pypy default: cleanup and DCE

2013-03-20 Thread alex_gaynor
Author: Alex Gaynor Branch: Changeset: r62580:900232e06270 Date: 2013-03-20 14:32 -0700 http://bitbucket.org/pypy/pypy/changeset/900232e06270/ Log:cleanup and DCE diff --git a/rpython/translator/llsupport/__init__.py b/rpython/translator/llsupport/__init__.py deleted file mode 100644 diff

[pypy-commit] extradoc extradoc: fix stuff, add pdf

2013-03-20 Thread fijal
Author: Maciej Fijalkowski Branch: extradoc Changeset: r4963:7bb26582f0c7 Date: 2013-03-20 14:44 -0700 http://bitbucket.org/pypy/extradoc/changeset/7bb26582f0c7/ Log:fix stuff, add pdf diff --git a/talk/sftour2013/invitae/Makefile b/talk/sftour2013/invitae/Makefile --- a/talk/sftour2013/invi

[pypy-commit] pypy remove-list-smm: Kill interpclass_w everywhere.

2013-03-20 Thread arigo
Author: Armin Rigo Branch: remove-list-smm Changeset: r62582:d944ad6fa63d Date: 2013-03-20 14:53 -0700 http://bitbucket.org/pypy/pypy/changeset/d944ad6fa63d/ Log:Kill interpclass_w everywhere. diff --git a/pypy/interpreter/baseobjspace.py b/pypy/interpreter/baseobjspace.py --- a/pypy/interpr

[pypy-commit] pypy py3k-subprocess-new-session: Set HAVE_SETSID if we have setsid so we can create new sessions in subprocesses

2013-03-20 Thread Jason Chu
Author: Jason Chu Branch: py3k-subprocess-new-session Changeset: r62583:4ce57b37d051 Date: 2013-03-20 15:12 -0700 http://bitbucket.org/pypy/pypy/changeset/4ce57b37d051/ Log:Set HAVE_SETSID if we have setsid so we can create new sessions in subprocesses diff --git a/pypy/module/_posix

[pypy-commit] pypy py3k: Merged in xentac/pypy/py3k-subprocess-new-session (pull request #143)

2013-03-20 Thread pjenvey
Author: Philip Jenvey Branch: py3k Changeset: r62584:27b08f6ff879 Date: 2013-03-20 15:18 -0700 http://bitbucket.org/pypy/pypy/changeset/27b08f6ff879/ Log:Merged in xentac/pypy/py3k-subprocess-new-session (pull request #143) Set HAVE_SETSID if we have setsid so we can create n

[pypy-commit] pypy reflex-support: copy constructor test

2013-03-20 Thread wlav
Author: Wim Lavrijsen Branch: reflex-support Changeset: r62588:f59f2e75c584 Date: 2013-03-20 14:59 -0700 http://bitbucket.org/pypy/pypy/changeset/f59f2e75c584/ Log:copy constructor test diff --git a/pypy/module/cppyy/test/datatypes.h b/pypy/module/cppyy/test/datatypes.h --- a/pypy/module/cp

[pypy-commit] pypy reflex-support: add a few more ROOT-based tests for completeness

2013-03-20 Thread wlav
Author: Wim Lavrijsen Branch: reflex-support Changeset: r62590:bae554d4296a Date: 2013-03-20 15:50 -0700 http://bitbucket.org/pypy/pypy/changeset/bae554d4296a/ Log:add a few more ROOT-based tests for completeness diff --git a/pypy/module/cppyy/test/test_cint.py b/pypy/module/cppyy/test/test

[pypy-commit] pypy reflex-support: improved "const" removal

2013-03-20 Thread wlav
Author: Wim Lavrijsen Branch: reflex-support Changeset: r62585:94948aa3cb9c Date: 2013-03-20 14:39 -0700 http://bitbucket.org/pypy/pypy/changeset/94948aa3cb9c/ Log:improved "const" removal diff --git a/pypy/module/cppyy/helper.py b/pypy/module/cppyy/helper.py --- a/pypy/module/cppyy/helper.p

[pypy-commit] pypy reflex-support: several ROOT-based tests; added to test_cint.py for completeness

2013-03-20 Thread wlav
Author: Wim Lavrijsen Branch: reflex-support Changeset: r62586:e13d241eae72 Date: 2013-03-20 14:39 -0700 http://bitbucket.org/pypy/pypy/changeset/e13d241eae72/ Log:several ROOT-based tests; added to test_cint.py for completeness diff --git a/pypy/module/cppyy/test/test_cint.py b/pypy/module

[pypy-commit] pypy reflex-support: tests for global enums

2013-03-20 Thread wlav
Author: Wim Lavrijsen Branch: reflex-support Changeset: r62587:582b2ae4 Date: 2013-03-20 14:48 -0700 http://bitbucket.org/pypy/pypy/changeset/582b2ae4/ Log:tests for global enums diff --git a/pypy/module/cppyy/test/datatypes.h b/pypy/module/cppyy/test/datatypes.h --- a/pypy/module/c

[pypy-commit] pypy reflex-support: object validity behavior tests

2013-03-20 Thread wlav
Author: Wim Lavrijsen Branch: reflex-support Changeset: r62589:381e15c68488 Date: 2013-03-20 15:23 -0700 http://bitbucket.org/pypy/pypy/changeset/381e15c68488/ Log:object validity behavior tests diff --git a/pypy/module/cppyy/test/datatypes.cxx b/pypy/module/cppyy/test/datatypes.cxx --- a/p

[pypy-commit] buildbot default: remove tannit-win32 and tannit lock for win32

2013-03-20 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r743:ddd91cb6c03e Date: 2013-03-20 19:24 -0400 http://bitbucket.org/pypy/buildbot/changeset/ddd91cb6c03e/ Log:remove tannit-win32 and tannit lock for win32 diff --git a/bot2/pypybuildbot/master.py b/bot2/pypybuildbot/master.py --- a/bot2/pypybuildbot/

[pypy-commit] buildbot default: allow own32 to run alongside translation: we're more limited by memory than CPU

2013-03-20 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r744:4b28d80ac0bc Date: 2013-03-20 19:41 -0400 http://bitbucket.org/pypy/buildbot/changeset/4b28d80ac0bc/ Log:allow own32 to run alongside translation: we're more limited by memory than CPU diff --git a/bot2/pypybuildbot/builds.py b/bot2/pypyb

[pypy-commit] pypy default: removed a C file that was unused

2013-03-20 Thread alex_gaynor
Author: Alex Gaynor Branch: Changeset: r62593:849bdb0dca78 Date: 2013-03-20 16:57 -0700 http://bitbucket.org/pypy/pypy/changeset/849bdb0dca78/ Log:removed a C file that was unused diff --git a/rpython/translator/tool/__thread_test.c b/rpython/translator/tool/__thread_test.c deleted file mo

[pypy-commit] pypy numpy-pickle: Implement pickle for dtypes

2013-03-20 Thread rguillebert
Author: Romain Guillebert Branch: numpy-pickle Changeset: r62594:3a23062660aa Date: 2013-03-20 18:50 +0100 http://bitbucket.org/pypy/pypy/changeset/3a23062660aa/ Log:Implement pickle for dtypes diff --git a/pypy/module/micronumpy/interp_dtype.py b/pypy/module/micronumpy/interp_dtype.py ---

[pypy-commit] pypy numpy-pickle: Implement pickling for dtypes

2013-03-20 Thread rguillebert
Author: Romain Guillebert Branch: numpy-pickle Changeset: r62595:ef6ba39d4901 Date: 2013-03-21 01:09 +0100 http://bitbucket.org/pypy/pypy/changeset/ef6ba39d4901/ Log:Implement pickling for dtypes diff --git a/pypy/module/micronumpy/interp_dtype.py b/pypy/module/micronumpy/interp_dtype.py --

[pypy-commit] pypy default: clean up the pickle StringBuilder modifications

2013-03-20 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r62596:3252c980a8b1 Date: 2013-03-20 20:32 -0400 http://bitbucket.org/pypy/pypy/changeset/3252c980a8b1/ Log:clean up the pickle StringBuilder modifications diff --git a/lib-python/2/pickle.py b/lib-python/2/pickle.py --- a/lib-python/2/pickle.py +++ b

[pypy-commit] pypy default: some sanity checks so these don't silently fail if __pypy__ items are moved around

2013-03-20 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r62597:6c2989efb370 Date: 2013-03-20 20:56 -0400 http://bitbucket.org/pypy/pypy/changeset/6c2989efb370/ Log:some sanity checks so these don't silently fail if __pypy__ items are moved around diff --git a/lib-python/2/collections.py b/lib-pytho

[pypy-commit] pypy default: typo

2013-03-20 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r62598:7c63dc3c19ab Date: 2013-03-20 20:58 -0400 http://bitbucket.org/pypy/pypy/changeset/7c63dc3c19ab/ Log:typo diff --git a/lib-python/2/collections.py b/lib-python/2/collections.py --- a/lib-python/2/collections.py +++ b/lib-python/2/collections.py

[pypy-commit] pypy reflex-support: allow bind_object to take a string (the class name) instead of the class itself

2013-03-20 Thread wlav
Author: Wim Lavrijsen Branch: reflex-support Changeset: r62600:f81426f91525 Date: 2013-03-20 17:17 -0700 http://bitbucket.org/pypy/pypy/changeset/f81426f91525/ Log:allow bind_object to take a string (the class name) instead of the class itself diff --git a/pypy/module/cppyy/interp_cp

[pypy-commit] pypy reflex-support: initial/experimental support for accessing macro's (CINT-only)

2013-03-20 Thread wlav
Author: Wim Lavrijsen Branch: reflex-support Changeset: r62599:6f7196e584fc Date: 2013-03-20 16:18 -0700 http://bitbucket.org/pypy/pypy/changeset/6f7196e584fc/ Log:initial/experimental support for accessing macro's (CINT-only) diff --git a/pypy/module/cppyy/converter.py b/pypy/module/cppyy/c

[pypy-commit] pypy reflex-support: adding some more ROOT-based tests (CINT only) for completeness

2013-03-20 Thread wlav
Author: Wim Lavrijsen Branch: reflex-support Changeset: r62602:4661b4e901ee Date: 2013-03-20 17:38 -0700 http://bitbucket.org/pypy/pypy/changeset/4661b4e901ee/ Log:adding some more ROOT-based tests (CINT only) for completeness diff --git a/pypy/module/cppyy/test/test_cint.py b/pypy/module/c

[pypy-commit] pypy reflex-support: better error reporting for bind_object and associated test

2013-03-20 Thread wlav
Author: Wim Lavrijsen Branch: reflex-support Changeset: r62601:1689e35140bf Date: 2013-03-20 17:35 -0700 http://bitbucket.org/pypy/pypy/changeset/1689e35140bf/ Log:better error reporting for bind_object and associated test diff --git a/pypy/module/cppyy/interp_cppyy.py b/pypy/module/cppyy/i

[pypy-commit] pypy reflex-support: allow comparisons to None (and have them respond sanely)

2013-03-20 Thread wlav
Author: Wim Lavrijsen Branch: reflex-support Changeset: r62603:9d5aae59d25e Date: 2013-03-20 18:24 -0700 http://bitbucket.org/pypy/pypy/changeset/9d5aae59d25e/ Log:allow comparisons to None (and have them respond sanely) diff --git a/pypy/module/cppyy/interp_cppyy.py b/pypy/module/cppyy/int

[pypy-commit] pypy default: another sanity check for a __pypy__ import

2013-03-20 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r62604:22ae273e67c1 Date: 2013-03-20 22:06 -0400 http://bitbucket.org/pypy/pypy/changeset/22ae273e67c1/ Log:another sanity check for a __pypy__ import diff --git a/lib_pypy/cPickle.py b/lib_pypy/cPickle.py --- a/lib_pypy/cPickle.py +++ b/lib_pypy/cPic

[pypy-commit] buildbot sort-nightly-directories: a branch to sort the nightlies page by directory modification time, with trunk on top

2013-03-20 Thread mattip
Author: Matti Picus Branch: sort-nightly-directories Changeset: r745:578d497c6b64 Date: 2013-03-20 19:16 -0700 http://bitbucket.org/pypy/buildbot/changeset/578d497c6b64/ Log:a branch to sort the nightlies page by directory modification time, with trunk on top diff --git a/bot2/pypybu

[pypy-commit] buildbot sort-nightly-directories: add a passing test for sorting directories

2013-03-20 Thread mattip
Author: Matti Picus Branch: sort-nightly-directories Changeset: r746:95d5e9d16d87 Date: 2013-03-20 18:35 -0700 http://bitbucket.org/pypy/buildbot/changeset/95d5e9d16d87/ Log:add a passing test for sorting directories diff --git a/bot2/pypybuildbot/test/test_pypylist.py b/bot2/pypybuildbot/t

[pypy-commit] buildbot sort-nightly-directories: skeleton class for 'sort by last mod time'

2013-03-20 Thread mattip
Author: Matti Picus Branch: sort-nightly-directories Changeset: r749:da80658bb619 Date: 2013-03-20 20:26 -0700 http://bitbucket.org/pypy/buildbot/changeset/da80658bb619/ Log:skeleton class for 'sort by last mod time' diff --git a/bot2/pypybuildbot/pypylist.py b/bot2/pypybuildbot/pypylist.py

[pypy-commit] buildbot sort-nightly-directories: extend test to check for correct sorting

2013-03-20 Thread mattip
Author: Matti Picus Branch: sort-nightly-directories Changeset: r747:e7faa72fce49 Date: 2013-03-20 19:54 -0700 http://bitbucket.org/pypy/buildbot/changeset/e7faa72fce49/ Log:extend test to check for correct sorting diff --git a/bot2/pypybuildbot/test/test_pypylist.py b/bot2/pypybuildbot/tes

[pypy-commit] buildbot sort-nightly-directories: simplify

2013-03-20 Thread mattip
Author: Matti Picus Branch: sort-nightly-directories Changeset: r751:a60dfee5eb4b Date: 2013-03-20 21:18 -0700 http://bitbucket.org/pypy/buildbot/changeset/a60dfee5eb4b/ Log:simplify diff --git a/bot2/pypybuildbot/pypylist.py b/bot2/pypybuildbot/pypylist.py --- a/bot2/pypybuildbot/pypylist.p

[pypy-commit] buildbot sort-nightly-directories: refactor test to use PyPyList, start to fix code

2013-03-20 Thread mattip
Author: Matti Picus Branch: sort-nightly-directories Changeset: r748:8aecca90aba5 Date: 2013-03-20 20:22 -0700 http://bitbucket.org/pypy/buildbot/changeset/8aecca90aba5/ Log:refactor test to use PyPyList, start to fix code diff --git a/bot2/pypybuildbot/pypylist.py b/bot2/pypybuildbot/pypyli

[pypy-commit] buildbot sort-nightly-directories: simplify test, implement sorting

2013-03-20 Thread mattip
Author: Matti Picus Branch: sort-nightly-directories Changeset: r750:06b4a174180c Date: 2013-03-20 21:08 -0700 http://bitbucket.org/pypy/buildbot/changeset/06b4a174180c/ Log:simplify test, implement sorting diff --git a/bot2/pypybuildbot/pypylist.py b/bot2/pypybuildbot/pypylist.py --- a/bot2

[pypy-commit] buildbot sort-nightly-directories: close about-to-be-merged branch

2013-03-20 Thread mattip
Author: Matti Picus Branch: sort-nightly-directories Changeset: r752:73a9e7779b04 Date: 2013-03-20 23:21 -0700 http://bitbucket.org/pypy/buildbot/changeset/73a9e7779b04/ Log:close about-to-be-merged branch ___ pypy-commit mailing list pypy-commit@p

[pypy-commit] buildbot default: merge sort-nightly-directories which sorts the nightly page by mtime of the subdirectories and puts trunk on top

2013-03-20 Thread mattip
Author: Matti Picus Branch: Changeset: r753:c816177376d6 Date: 2013-03-20 23:22 -0700 http://bitbucket.org/pypy/buildbot/changeset/c816177376d6/ Log:merge sort-nightly-directories which sorts the nightly page by mtime of the subdirectories and puts trunk on top diff --git a/bot2/pyp