[pypy-commit] pypy default: really fix tests

2017-09-11 Thread cfbolz
Author: Carl Friedrich Bolz-Tereick Branch: Changeset: r92366:361e12f80c69 Date: 2017-09-11 09:04 +0200 http://bitbucket.org/pypy/pypy/changeset/361e12f80c69/ Log:really fix tests diff --git a/rpython/jit/codewriter/test/test_longlong.py b/rpython/jit/codewriter/test/test_longlong.py --- a

[pypy-commit] pypy cpyext-tp_dictoffset: set tp_dictoffset, used only as hint for cython

2017-09-11 Thread mattip
Author: Matti Picus Branch: cpyext-tp_dictoffset Changeset: r92368:54a0a8a5a9d9 Date: 2017-09-11 18:09 +0300 http://bitbucket.org/pypy/pypy/changeset/54a0a8a5a9d9/ Log:set tp_dictoffset, used only as hint for cython ___ pypy-commit mailing list pyp

[pypy-commit] pypy default: test, implement PyUnicode_FromFormat in C

2017-09-11 Thread mattip
Author: Matti Picus Branch: Changeset: r92367:e3a231de06fb Date: 2017-09-09 23:55 +0300 http://bitbucket.org/pypy/pypy/changeset/e3a231de06fb/ Log:test, implement PyUnicode_FromFormat in C diff --git a/pypy/module/cpyext/api.py b/pypy/module/cpyext/api.py --- a/pypy/module/cpyext/api.py +++

[pypy-commit] pypy cpyext-tp_dictoffset: test, fix setting tp_dictoffset as indicator for mutable attributes (cython)

2017-09-11 Thread mattip
Author: Matti Picus Branch: cpyext-tp_dictoffset Changeset: r92369:56afd2a1b1e9 Date: 2017-09-09 23:58 +0300 http://bitbucket.org/pypy/pypy/changeset/56afd2a1b1e9/ Log:test, fix setting tp_dictoffset as indicator for mutable attributes (cython) diff --git a/pypy/module/cpyext/api.py

[pypy-commit] pypy cpyext-tp_dictoffset: test, fixes for when tp_dictoffset is non-zero, when PyObject_*Attr* can run

2017-09-11 Thread mattip
Author: Matti Picus Branch: cpyext-tp_dictoffset Changeset: r92370:e2b3bea05c2b Date: 2017-09-11 18:06 +0300 http://bitbucket.org/pypy/pypy/changeset/e2b3bea05c2b/ Log:test, fixes for when tp_dictoffset is non-zero, when PyObject_*Attr* can run diff --git a/pypy/module/cpyext/api.py

[pypy-commit] pypy default: copy-paste typo

2017-09-11 Thread mattip
Author: Matti Picus Branch: Changeset: r92371:58204c4f3efd Date: 2017-09-11 18:40 +0300 http://bitbucket.org/pypy/pypy/changeset/58204c4f3efd/ Log:copy-paste typo diff --git a/pypy/module/_csv/interp_csv.py b/pypy/module/_csv/interp_csv.py --- a/pypy/module/_csv/interp_csv.py +++ b/pypy/mod

[pypy-commit] pypy py3.5: hg merge default (fast PyUnicode_Check disabled for now)

2017-09-11 Thread rlamy
Author: Ronan Lamy Branch: py3.5 Changeset: r92372:1f0dbee16f1f Date: 2017-09-11 17:53 +0100 http://bitbucket.org/pypy/pypy/changeset/1f0dbee16f1f/ Log:hg merge default (fast PyUnicode_Check disabled for now) diff --git a/pypy/doc/whatsnew-head.rst b/pypy/doc/whatsnew-head.rst --- a/pypy/doc

[pypy-commit] pypy py3.5: Speed up a slow test

2017-09-11 Thread rlamy
Author: Ronan Lamy Branch: py3.5 Changeset: r92373:97f210be408f Date: 2017-09-11 18:04 +0100 http://bitbucket.org/pypy/pypy/changeset/97f210be408f/ Log:Speed up a slow test diff --git a/pypy/module/itertools/test/test_itertools.py b/pypy/module/itertools/test/test_itertools.py --- a/pypy/mo

[pypy-commit] pypy py3.5: Add space.long and space.w_long aliases and reduce diff with default

2017-09-11 Thread rlamy
Author: Ronan Lamy Branch: py3.5 Changeset: r92374:d9fa892ead1e Date: 2017-09-11 18:21 +0100 http://bitbucket.org/pypy/pypy/changeset/d9fa892ead1e/ Log:Add space.long and space.w_long aliases and reduce diff with default diff --git a/pypy/interpreter/baseobjspace.py b/pypy/interpreter/baseob

[pypy-commit] pypy default: add missing file

2017-09-11 Thread mattip
Author: Matti Picus Branch: Changeset: r92375:303d4b69c445 Date: 2017-09-11 22:39 +0300 http://bitbucket.org/pypy/pypy/changeset/303d4b69c445/ Log:add missing file diff --git a/pypy/module/cpyext/src/unicodeobject.c b/pypy/module/cpyext/src/unicodeobject.c new file mode 100644 --- /dev/nul

[pypy-commit] pypy default: fix, on 32 bit platforms 1L<<31 overflows a 'l' parsed object

2017-09-11 Thread mattip
Author: Matti Picus Branch: Changeset: r92376:eeb144e01b46 Date: 2017-09-11 23:48 +0300 http://bitbucket.org/pypy/pypy/changeset/eeb144e01b46/ Log:fix, on 32 bit platforms 1L<<31 overflows a 'l' parsed object diff --git a/pypy/module/cpyext/test/test_typeobject.py b/pypy/module/cpyext/test