[pypy-commit] pypy cpyext-ext: fix test, same as a884eb833aa5

2016-06-03 Thread arigo
Author: Armin Rigo Branch: cpyext-ext Changeset: r84902:686345719452 Date: 2016-06-03 15:29 +0200 http://bitbucket.org/pypy/pypy/changeset/686345719452/ Log:fix test, same as a884eb833aa5 diff --git a/pypy/objspace/std/test/test_memoryobject.py

[pypy-commit] pypy cpyext-ext: fix test - buffer(bytearray) succeeds

2016-06-03 Thread mattip
Author: Matti Picus Branch: cpyext-ext Changeset: r84899:a884eb833aa5 Date: 2016-06-03 15:52 +0300 http://bitbucket.org/pypy/pypy/changeset/a884eb833aa5/ Log:fix test - buffer(bytearray) succeeds diff --git a/pypy/objspace/std/test/test_bufferobject.py

[pypy-commit] pypy cpyext-ext: fix tests

2016-06-01 Thread mattip
Author: Matti Picus Branch: cpyext-ext Changeset: r84874:5b5631d70988 Date: 2016-06-02 07:39 +0300 http://bitbucket.org/pypy/pypy/changeset/5b5631d70988/ Log:fix tests diff --git a/pypy/module/cpyext/test/test_bytearrayobject.py

[pypy-commit] pypy cpyext-ext: fix test, PyThreadState_Get() cannot be called after PyEval_SaveThread since the state is set to NULL

2016-04-21 Thread mattip
Author: mattip Branch: cpyext-ext Changeset: r83810:80bae955e12e Date: 2016-04-21 22:57 +0300 http://bitbucket.org/pypy/pypy/changeset/80bae955e12e/ Log:fix test, PyThreadState_Get() cannot be called after PyEval_SaveThread since the state is set to NULL diff

[pypy-commit] pypy cpyext-ext: fix tests for -A

2016-04-19 Thread mattip
Author: mattip Branch: cpyext-ext Changeset: r83756:625b0b723c5b Date: 2016-04-19 01:46 +0300 http://bitbucket.org/pypy/pypy/changeset/625b0b723c5b/ Log:fix tests for -A diff --git a/pypy/module/cpyext/include/numpy/arrayobject.h

[pypy-commit] pypy cpyext-ext: fix strategy for zip()

2016-04-01 Thread mattip
Author: mattip Branch: cpyext-ext Changeset: r83496:bcaba584080e Date: 2016-04-01 16:48 +0300 http://bitbucket.org/pypy/pypy/changeset/bcaba584080e/ Log:fix strategy for zip() diff --git a/pypy/module/cpyext/sequence.py b/pypy/module/cpyext/sequence.py ---

[pypy-commit] pypy cpyext-ext: fix tests for -A

2016-03-30 Thread mattip
Author: mattip Branch: cpyext-ext Changeset: r83442:425af52a45be Date: 2016-03-30 23:52 +0300 http://bitbucket.org/pypy/pypy/changeset/425af52a45be/ Log:fix tests for -A diff --git a/pypy/module/cpyext/test/test_bytesobject.py

[pypy-commit] pypy cpyext-ext: fix PyString_Concat

2016-03-30 Thread mattip
Author: mattip Branch: cpyext-ext Changeset: r83443:06a3e1333572 Date: 2016-03-30 23:53 +0300 http://bitbucket.org/pypy/pypy/changeset/06a3e1333572/ Log:fix PyString_Concat diff --git a/pypy/module/cpyext/bytesobject.py b/pypy/module/cpyext/bytesobject.py ---

[pypy-commit] pypy cpyext-ext: fix merge

2016-03-24 Thread mattip
Author: mattip Branch: cpyext-ext Changeset: r83318:158eb5d4ebd0 Date: 2016-03-24 00:50 +0200 http://bitbucket.org/pypy/pypy/changeset/158eb5d4ebd0/ Log:fix merge diff --git a/pypy/module/cpyext/include/unicodeobject.h b/pypy/module/cpyext/include/unicodeobject.h ---

[pypy-commit] pypy cpyext-ext: Fix for test_frame_tstate_tracing:

2016-03-22 Thread arigo
Author: Armin Rigo Branch: cpyext-ext Changeset: r83255:29df5133bc06 Date: 2016-03-22 17:04 +0100 http://bitbucket.org/pypy/pypy/changeset/29df5133bc06/ Log:Fix for test_frame_tstate_tracing: * revert ce2053a9cdeb * extend RPyThreadStart to RPyThreadStartEx

[pypy-commit] pypy cpyext-ext: fix properly (amaury)

2016-03-18 Thread mattip
Author: mattip Branch: cpyext-ext Changeset: r83083:68a119b4877f Date: 2016-03-16 19:23 +0200 http://bitbucket.org/pypy/pypy/changeset/68a119b4877f/ Log:fix properly (amaury) diff --git a/pypy/module/cpyext/bytesobject.py b/pypy/module/cpyext/bytesobject.py ---

[pypy-commit] pypy cpyext-ext: fix translation

2016-03-14 Thread mattip
Author: mattip Branch: cpyext-ext Changeset: r83060:fbe7b2887db2 Date: 2016-03-15 00:58 +0200 http://bitbucket.org/pypy/pypy/changeset/fbe7b2887db2/ Log:fix translation diff --git a/pypy/module/cpyext/bytesobject.py b/pypy/module/cpyext/bytesobject.py ---

[pypy-commit] pypy cpyext-ext: fix test since PyStringObject buffer is read only, fix segfault if buffer is NULL

2016-03-14 Thread mattip
Author: mattip Branch: cpyext-ext Changeset: r83058:232d73c2ea06 Date: 2016-03-15 00:14 +0200 http://bitbucket.org/pypy/pypy/changeset/232d73c2ea06/ Log:fix test since PyStringObject buffer is read only, fix segfault if buffer is NULL diff --git

[pypy-commit] pypy cpyext-ext: Fix PyString_AsString() to accept a Unicode object, it is encoded using the default encoding.

2016-03-14 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: cpyext-ext Changeset: r83057:931af853eaab Date: 2016-03-14 22:20 +0100 http://bitbucket.org/pypy/pypy/changeset/931af853eaab/ Log:Fix PyString_AsString() to accept a Unicode object, it is encoded using the default encoding.

[pypy-commit] pypy cpyext-ext: fix uppercase/lowercase issues till test passes -A, exceeds recursion depth untranslated

2016-03-03 Thread mattip
Author: mattip Branch: cpyext-ext Changeset: r82674:c95852e53e64 Date: 2016-03-02 18:28 -0500 http://bitbucket.org/pypy/pypy/changeset/c95852e53e64/ Log:fix uppercase/lowercase issues till test passes -A, exceeds recursion depth untranslated diff --git

[pypy-commit] pypy cpyext-ext: fix for tp_new slot

2016-03-03 Thread mattip
Author: mattip Branch: cpyext-ext Changeset: r82675:3e9fab0f7ce6 Date: 2016-03-02 23:25 -0500 http://bitbucket.org/pypy/pypy/changeset/3e9fab0f7ce6/ Log:fix for tp_new slot diff --git a/pypy/module/cpyext/slotdefs.py b/pypy/module/cpyext/slotdefs.py ---

[pypy-commit] pypy cpyext-ext: fix fix

2016-03-01 Thread mattip
Author: mattip Branch: cpyext-ext Changeset: r82649:d34b903fd57b Date: 2016-03-01 21:45 -0500 http://bitbucket.org/pypy/pypy/changeset/d34b903fd57b/ Log:fix fix diff --git a/pypy/module/cpyext/unicodeobject.py b/pypy/module/cpyext/unicodeobject.py ---

[pypy-commit] pypy cpyext-ext: fix slot_nb_int, and attempt a test, but blocked by issue 2248

2016-03-01 Thread arigo
Author: Armin Rigo Branch: cpyext-ext Changeset: r82645:11338c928fad Date: 2016-03-01 21:07 +0100 http://bitbucket.org/pypy/pypy/changeset/11338c928fad/ Log:fix slot_nb_int, and attempt a test, but blocked by issue 2248 diff --git a/pypy/module/cpyext/slotdefs.py

[pypy-commit] pypy cpyext-ext: fix test from 22fa8dfd0a2d by creating yet more alloc() functions

2016-02-29 Thread mattip
Author: mattip Branch: cpyext-ext Changeset: r82616:d3f9504cf268 Date: 2016-02-29 16:57 -0500 http://bitbucket.org/pypy/pypy/changeset/d3f9504cf268/ Log:fix test from 22fa8dfd0a2d by creating yet more alloc() functions diff --git a/pypy/module/cpyext/api.py

[pypy-commit] pypy cpyext-ext: Fix refcount bug in test

2016-02-25 Thread rlamy
Author: Ronan Lamy Branch: cpyext-ext Changeset: r82513:4f809c093ddd Date: 2016-02-25 17:00 +0100 http://bitbucket.org/pypy/pypy/changeset/4f809c093ddd/ Log:Fix refcount bug in test diff --git a/pypy/module/cpyext/test/test_dictobject.py

[pypy-commit] pypy cpyext-ext: Fix for running -A cpyext tests

2016-02-23 Thread rlamy
Author: Ronan Lamy Branch: cpyext-ext Changeset: r82443:cf846c1b0068 Date: 2016-02-23 16:07 +0100 http://bitbucket.org/pypy/pypy/changeset/cf846c1b0068/ Log:Fix for running -A cpyext tests diff --git a/pypy/module/cpyext/test/test_cpyext.py

[pypy-commit] pypy cpyext-ext: fix test: types which have the same size as PyObject should not cause instance layout conflicts

2016-02-23 Thread rlamy
Author: Ronan Lamy Branch: cpyext-ext Changeset: r82442:7ee3179525f3 Date: 2016-02-23 15:33 +0100 http://bitbucket.org/pypy/pypy/changeset/7ee3179525f3/ Log:fix test: types which have the same size as PyObject should not cause instance layout conflicts diff

[pypy-commit] pypy cpyext-ext: fix

2016-02-23 Thread arigo
Author: Armin Rigo Branch: cpyext-ext Changeset: r82435:208a42ce0440 Date: 2016-02-23 13:59 +0100 http://bitbucket.org/pypy/pypy/changeset/208a42ce0440/ Log:fix diff --git a/pypy/module/cpyext/typeobject.py b/pypy/module/cpyext/typeobject.py ---

[pypy-commit] pypy cpyext-ext: fix, test PyDictProxy object

2016-02-22 Thread mattip
Author: mattip Branch: cpyext-ext Changeset: r82388:b1fc26f1766b Date: 2016-02-21 18:00 +0100 http://bitbucket.org/pypy/pypy/changeset/b1fc26f1766b/ Log:fix, test PyDictProxy object diff --git a/pypy/module/cpyext/api.py b/pypy/module/cpyext/api.py ---

[pypy-commit] pypy cpyext-ext: fix order of operations

2016-02-21 Thread mattip
Author: mattip Branch: cpyext-ext Changeset: r82363:46e8c7546570 Date: 2016-02-21 14:21 +0100 http://bitbucket.org/pypy/pypy/changeset/46e8c7546570/ Log:fix order of operations diff --git a/pypy/module/cpyext/api.py b/pypy/module/cpyext/api.py ---

[pypy-commit] pypy cpyext-ext: fix merge

2016-02-21 Thread mattip
Author: mattip Branch: cpyext-ext Changeset: r82358:8b4f91899232 Date: 2016-02-20 14:28 +0100 http://bitbucket.org/pypy/pypy/changeset/8b4f91899232/ Log:fix merge diff --git a/pypy/module/cpyext/api.py b/pypy/module/cpyext/api.py --- a/pypy/module/cpyext/api.py +++

[pypy-commit] pypy cpyext-ext: fix ref leak in test

2016-01-16 Thread mattip
Author: mattip Branch: cpyext-ext Changeset: r81824:e44851036099 Date: 2016-01-16 19:05 +0200 http://bitbucket.org/pypy/pypy/changeset/e44851036099/ Log:fix ref leak in test diff --git a/pypy/module/cpyext/test/foo.c b/pypy/module/cpyext/test/foo.c ---

[pypy-commit] pypy cpyext-ext: fix translation

2016-01-15 Thread mattip
Author: mattip Branch: cpyext-ext Changeset: r81800:efd106c73dda Date: 2016-01-15 16:32 +0200 http://bitbucket.org/pypy/pypy/changeset/efd106c73dda/ Log:fix translation diff --git a/pypy/module/cpyext/typeobject.py b/pypy/module/cpyext/typeobject.py ---

[pypy-commit] pypy cpyext-ext: Fix appdirect test: CPython does not have a dictionary for C types.

2015-12-29 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: cpyext-ext Changeset: r81497:5f5896c1b060 Date: 2015-12-30 01:43 +0100 http://bitbucket.org/pypy/pypy/changeset/5f5896c1b060/ Log:Fix appdirect test: CPython does not have a dictionary for C types. (cpyext should maybe do the

[pypy-commit] pypy cpyext-ext: Fix a segfault with -A: a metatype always creates heap types.

2015-12-29 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: cpyext-ext Changeset: r81498:ead9f50764bf Date: 2015-12-30 02:28 +0100 http://bitbucket.org/pypy/pypy/changeset/ead9f50764bf/ Log:Fix a segfault with -A: a metatype always creates heap types. diff --git a/pypy/module/cpyext/test/foo.c

[pypy-commit] pypy cpyext-ext: fix for untranslated tests, start to run -A numpy tests

2015-12-17 Thread mattip
Author: mattip Branch: cpyext-ext Changeset: r81369:55993b380e68 Date: 2015-12-17 21:54 +0200 http://bitbucket.org/pypy/pypy/changeset/55993b380e68/ Log:fix for untranslated tests, start to run -A numpy tests diff --git a/pypy/module/cpyext/test/test_cpyext.py