[pypy-commit] pypy default: test fix for np.array()[...] returning a view (njs)

2016-07-12 Thread mattip
Author: Matti Picus Branch: Changeset: r85666:6b0ba4b3816d Date: 2016-07-12 09:32 -0500 http://bitbucket.org/pypy/pypy/changeset/6b0ba4b3816d/ Log:test fix for np.array()[...] returning a view (njs) diff --git a/pypy/module/micronumpy/ndarray.py b/pypy/module/micronumpy/ndarray.py --- a/py

[pypy-commit] extradoc extradoc: changed first slide a bit (suggestions made by fijal)

2016-07-12 Thread plan_rich
Author: Richard Plangger Branch: extradoc Changeset: r5652:78b0da4925c1 Date: 2016-07-12 09:53 -0500 http://bitbucket.org/pypy/extradoc/changeset/78b0da4925c1/ Log:changed first slide a bit (suggestions made by fijal) diff --git a/talk/compiler-workshop-2016/slides/index.html b/talk/compile

[pypy-commit] pypy cling-support: assertEqual -> assert

2016-07-12 Thread wlav
Author: Wim Lavrijsen Branch: cling-support Changeset: r85667:8ab8c51edb73 Date: 2016-07-12 09:52 -0700 http://bitbucket.org/pypy/pypy/changeset/8ab8c51edb73/ Log:assertEqual -> assert diff --git a/pypy/module/cppyy/test/test_stltypes.py b/pypy/module/cppyy/test/test_stltypes.py --- a/pypy/

[pypy-commit] pypy cling-support: from Aditi: proper type codes for instances converters

2016-07-12 Thread wlav
Author: Wim Lavrijsen Branch: cling-support Changeset: r85668:979fabdcc11a Date: 2016-07-12 09:52 -0700 http://bitbucket.org/pypy/pypy/changeset/979fabdcc11a/ Log:from Aditi: proper type codes for instances converters diff --git a/pypy/module/cppyy/converter.py b/pypy/module/cppyy/converter.

[pypy-commit] pypy cling-support: fix handling of abstract classes

2016-07-12 Thread wlav
Author: Wim Lavrijsen Branch: cling-support Changeset: r85669:cfe5c3380cce Date: 2016-07-12 10:55 -0700 http://bitbucket.org/pypy/pypy/changeset/cfe5c3380cce/ Log:fix handling of abstract classes diff --git a/pypy/module/cppyy/capi/builtin_capi.py b/pypy/module/cppyy/capi/builtin_capi.py --

[pypy-commit] pypy cling-support: pass length when converting char* to std::string

2016-07-12 Thread wlav
Author: Wim Lavrijsen Branch: cling-support Changeset: r85670:76d09d04588d Date: 2016-07-12 11:15 -0700 http://bitbucket.org/pypy/pypy/changeset/76d09d04588d/ Log:pass length when converting char* to std::string diff --git a/pypy/module/cppyy/capi/builtin_capi.py b/pypy/module/cppyy/capi/bu

[pypy-commit] pypy cling-support: simpler template handling

2016-07-12 Thread wlav
Author: Wim Lavrijsen Branch: cling-support Changeset: r85671:7e5b01d3cab2 Date: 2016-07-12 11:40 -0700 http://bitbucket.org/pypy/pypy/changeset/7e5b01d3cab2/ Log:simpler template handling diff --git a/pypy/module/cppyy/capi/builtin_capi.py b/pypy/module/cppyy/capi/builtin_capi.py --- a/pyp

[pypy-commit] pypy py3.5-async: Implement GET_YIELD_FROM_ITER pyopcode, 'yield from' works, write test for 'yield from'

2016-07-12 Thread raffael_t
Author: Raffael Tfirst Branch: py3.5-async Changeset: r85672:74022d9a4bbc Date: 2016-07-12 22:39 +0200 http://bitbucket.org/pypy/pypy/changeset/74022d9a4bbc/ Log:Implement GET_YIELD_FROM_ITER pyopcode, 'yield from' works, write test for 'yield from' diff --git a/pypy/interpreter/astc