[pypy-commit] pypy default: Issue1742 resolved

2014-04-25 Thread arigo
Author: Armin Rigo Branch: Changeset: r70962:a65f77b101c2 Date: 2014-04-25 09:31 +0200 http://bitbucket.org/pypy/pypy/changeset/a65f77b101c2/ Log:Issue1742 resolved Fix the path after the directory structure change (thanks peter). diff --git a/pypy/sandbox/pypy_interact.py b/pypy/s

[pypy-commit] pypy default: simplify, shell=True makes this work as is

2014-04-25 Thread mattip
Author: Matti Picus Branch: Changeset: r70964:a55bcb4345c9 Date: 2014-04-25 10:39 +0300 http://bitbucket.org/pypy/pypy/changeset/a55bcb4345c9/ Log:simplify, shell=True makes this work as is diff --git a/rpython/translator/platform/test/test_posix.py b/rpython/translator/platform/test/test_

[pypy-commit] pypy default: disable sandbox on windows, fix tests

2014-04-25 Thread mattip
Author: Matti Picus Branch: Changeset: r70963:6ef1921d8d68 Date: 2014-04-25 10:09 +0300 http://bitbucket.org/pypy/pypy/changeset/6ef1921d8d68/ Log:disable sandbox on windows, fix tests diff --git a/rpython/translator/sandbox/rsandbox.py b/rpython/translator/sandbox/rsandbox.py --- a/rpytho

[pypy-commit] pypy reflex-support: add readbuf_w

2014-04-25 Thread wlav
Author: Wim Lavrijsen Branch: reflex-support Changeset: r70968:b95344d84ba8 Date: 2014-04-25 01:10 -0700 http://bitbucket.org/pypy/pypy/changeset/b95344d84ba8/ Log:add readbuf_w diff --git a/pypy/module/cppyy/test/test_zjit.py b/pypy/module/cppyy/test/test_zjit.py --- a/pypy/module/cppyy/te

[pypy-commit] pypy reflex-support: adjust test to new buffer interface

2014-04-25 Thread wlav
Author: Wim Lavrijsen Branch: reflex-support Changeset: r70966:1f6f6b1fac06 Date: 2014-04-25 00:04 -0700 http://bitbucket.org/pypy/pypy/changeset/1f6f6b1fac06/ Log:adjust test to new buffer interface diff --git a/pypy/module/cppyy/test/test_zjit.py b/pypy/module/cppyy/test/test_zjit.py ---

[pypy-commit] pypy reflex-support: fixups after recent changes to buffers

2014-04-25 Thread wlav
Author: Wim Lavrijsen Branch: reflex-support Changeset: r70967:7244dec161c4 Date: 2014-04-25 00:58 -0700 http://bitbucket.org/pypy/pypy/changeset/7244dec161c4/ Log:fixups after recent changes to buffers diff --git a/pypy/module/cppyy/converter.py b/pypy/module/cppyy/converter.py --- a/pypy/m

[pypy-commit] pypy default: merge reflex-support into default: fixes for new buffer interfaces

2014-04-25 Thread wlav
Author: Wim Lavrijsen Branch: Changeset: r70969:4b806e538c61 Date: 2014-04-25 01:14 -0700 http://bitbucket.org/pypy/pypy/changeset/4b806e538c61/ Log:merge reflex-support into default: fixes for new buffer interfaces diff --git a/pypy/module/cppyy/converter.py b/pypy/module/cppyy/converter.p

[pypy-commit] pypy default: respect PYPY_LOCALBASE in windows

2014-04-25 Thread mattip
Author: Matti Picus Branch: Changeset: r70970:3b9b82ae5747 Date: 2014-04-25 11:33 +0300 http://bitbucket.org/pypy/pypy/changeset/3b9b82ae5747/ Log:respect PYPY_LOCALBASE in windows diff --git a/rpython/translator/platform/test/test_posix.py b/rpython/translator/platform/test/test_posix.py

[pypy-commit] pypy default: Check that string interpolation works, and is contant-folded if all

2014-04-25 Thread arigo
Author: Armin Rigo Branch: Changeset: r70971:6e240b6b7d94 Date: 2014-04-25 11:11 +0200 http://bitbucket.org/pypy/pypy/changeset/6e240b6b7d94/ Log:Check that string interpolation works, and is contant-folded if all arguments are constant. diff --git a/rpython/jit/metainterp/test/test

[pypy-commit] pypy default: write a passing test (because why not)

2014-04-25 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r70972:cb98a5f2a5e9 Date: 2014-04-25 12:24 +0200 http://bitbucket.org/pypy/pypy/changeset/cb98a5f2a5e9/ Log:write a passing test (because why not) diff --git a/rpython/jit/metainterp/optimizeopt/test/test_optimizeopt.py b/rpython/jit/metainterp

[pypy-commit] pypy default: test/fix file.writelines(buffer) behavior to match CPython

2014-04-25 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r70975:f8870a4ed20a Date: 2014-04-25 12:54 -0400 http://bitbucket.org/pypy/pypy/changeset/f8870a4ed20a/ Log:test/fix file.writelines(buffer) behavior to match CPython diff --git a/pypy/module/_file/interp_file.py b/pypy/module/_file/interp_file.py ---

[pypy-commit] pypy default: seems str_w is sufficient here

2014-04-25 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r70974:044a3faede8c Date: 2014-04-25 11:53 -0400 http://bitbucket.org/pypy/pypy/changeset/044a3faede8c/ Log:seems str_w is sufficient here diff --git a/pypy/module/_rawffi/array.py b/pypy/module/_rawffi/array.py --- a/pypy/module/_rawffi/array.py +++

[pypy-commit] pypy default: check types in file.writelines before writing

2014-04-25 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r70976:82cb77058ff2 Date: 2014-04-25 13:07 -0400 http://bitbucket.org/pypy/pypy/changeset/82cb77058ff2/ Log:check types in file.writelines before writing diff --git a/pypy/module/_file/interp_file.py b/pypy/module/_file/interp_file.py --- a/pypy/modul

[pypy-commit] pypy default: unicode_internal_decode accepts readbuf

2014-04-25 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r70977:629da2d06746 Date: 2014-04-25 13:15 -0400 http://bitbucket.org/pypy/pypy/changeset/629da2d06746/ Log:unicode_internal_decode accepts readbuf diff --git a/pypy/module/_codecs/interp_codecs.py b/pypy/module/_codecs/interp_codecs.py --- a/pypy/mo

[pypy-commit] pypy default: test/fix some compile() behaviors

2014-04-25 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r70978:0b124540057c Date: 2014-04-25 13:33 -0400 http://bitbucket.org/pypy/pypy/changeset/0b124540057c/ Log:test/fix some compile() behaviors diff --git a/lib-python/2.7/test/test_builtin.py b/lib-python/2.7/test/test_builtin.py --- a/lib-python/2.7/

[pypy-commit] pypy py3k-fix-strategies: provide a listview_int for bytes

2014-04-25 Thread pjenvey
Author: Philip Jenvey Branch: py3k-fix-strategies Changeset: r70980:8dabe468ecab Date: 2014-04-25 12:42 -0700 http://bitbucket.org/pypy/pypy/changeset/8dabe468ecab/ Log:provide a listview_int for bytes diff --git a/pypy/objspace/std/bytesobject.py b/pypy/objspace/std/bytesobject.py --- a/pyp

[pypy-commit] pypy py3k-fix-strategies: provide the fromkeys fastpath, differently from default, since it's based

2014-04-25 Thread pjenvey
Author: Philip Jenvey Branch: py3k-fix-strategies Changeset: r70979:f44626e10d82 Date: 2014-04-25 11:45 -0700 http://bitbucket.org/pypy/pypy/changeset/f44626e10d82/ Log:provide the fromkeys fastpath, differently from default, since it's based around unicode diff --git a/pypy/objspace

[pypy-commit] pypy default: pypyjit test of regex match using buffer

2014-04-25 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r70981:28a72900dee3 Date: 2014-04-25 15:57 -0400 http://bitbucket.org/pypy/pypy/changeset/28a72900dee3/ Log:pypyjit test of regex match using buffer diff --git a/pypy/module/pypyjit/test_pypy_c/test_buffers.py b/pypy/module/pypyjit/test_pypy_c/test_b

[pypy-commit] pypy py3k-fix-strategies: utilize decodekey_str

2014-04-25 Thread pjenvey
Author: Philip Jenvey Branch: py3k-fix-strategies Changeset: r70982:c9d410e044b3 Date: 2014-04-25 13:04 -0700 http://bitbucket.org/pypy/pypy/changeset/c9d410e044b3/ Log:utilize decodekey_str diff --git a/pypy/objspace/std/kwargsdict.py b/pypy/objspace/std/kwargsdict.py --- a/pypy/objspace/st

[pypy-commit] pypy py3k-fix-strategies: close to be merged branch

2014-04-25 Thread pjenvey
Author: Philip Jenvey Branch: py3k-fix-strategies Changeset: r70983:25c582216b18 Date: 2014-04-25 14:16 -0700 http://bitbucket.org/pypy/pypy/changeset/25c582216b18/ Log:close to be merged branch ___ pypy-commit mailing list pypy-commit@python.org h

[pypy-commit] pypy py3k: merge py3k-fix-strategies: re-enables the disabled strategies (issue1471)

2014-04-25 Thread pjenvey
Author: Philip Jenvey Branch: py3k Changeset: r70984:092f39d9ab1c Date: 2014-04-25 14:17 -0700 http://bitbucket.org/pypy/pypy/changeset/092f39d9ab1c/ Log:merge py3k-fix-strategies: re-enables the disabled strategies (issue1471) diff --git a/lib_pypy/_testcapi.py b/lib_pypy/_testcapi.

[pypy-commit] pypy reflex-support: use getarg_w instead of readbuf_w (thanks Brian!)

2014-04-25 Thread wlav
Author: Wim Lavrijsen Branch: reflex-support Changeset: r70987:154db8349f24 Date: 2014-04-25 13:32 -0700 http://bitbucket.org/pypy/pypy/changeset/154db8349f24/ Log:use getarg_w instead of readbuf_w (thanks Brian!) diff --git a/pypy/module/cppyy/converter.py b/pypy/module/cppyy/converter.py -

[pypy-commit] pypy reflex-support: expose cppyy.Template for end-user use

2014-04-25 Thread wlav
Author: Wim Lavrijsen Branch: reflex-support Changeset: r70988:5ebbaf3f1099 Date: 2014-04-25 13:56 -0700 http://bitbucket.org/pypy/pypy/changeset/5ebbaf3f1099/ Log:expose cppyy.Template for end-user use diff --git a/pypy/module/cppyy/__init__.py b/pypy/module/cppyy/__init__.py --- a/pypy/mod

[pypy-commit] pypy reflex-support: fix for issue 1676

2014-04-25 Thread wlav
Author: Wim Lavrijsen Branch: reflex-support Changeset: r70989:866f101100fc Date: 2014-04-25 16:23 -0700 http://bitbucket.org/pypy/pypy/changeset/866f101100fc/ Log:fix for issue 1676 diff --git a/pypy/module/cppyy/interp_cppyy.py b/pypy/module/cppyy/interp_cppyy.py --- a/pypy/module/cppyy/i

[pypy-commit] pypy default: merge reflex-support into branch: more tests opened, issue 1676 fixed

2014-04-25 Thread wlav
Author: Wim Lavrijsen Branch: Changeset: r70991:73f0d418fb69 Date: 2014-04-25 17:10 -0700 http://bitbucket.org/pypy/pypy/changeset/73f0d418fb69/ Log:merge reflex-support into branch: more tests opened, issue 1676 fixed diff --git a/pypy/module/cppyy/__init__.py b/pypy/module/cppyy/_

[pypy-commit] pypy reflex-support: open up more tests to the dummy backend

2014-04-25 Thread wlav
Author: Wim Lavrijsen Branch: reflex-support Changeset: r70986:0403fe95c260 Date: 2014-04-25 13:01 -0700 http://bitbucket.org/pypy/pypy/changeset/0403fe95c260/ Log:open up more tests to the dummy backend diff --git a/pypy/module/cppyy/src/dummy_backend.cxx b/pypy/module/cppyy/src/dummy_back

[pypy-commit] pypy reflex-support: merge default into branch

2014-04-25 Thread wlav
Author: Wim Lavrijsen Branch: reflex-support Changeset: r70990:812b9524c822 Date: 2014-04-25 16:23 -0700 http://bitbucket.org/pypy/pypy/changeset/812b9524c822/ Log:merge default into branch diff --git a/pypy/module/pypyjit/test_pypy_c/test_buffers.py b/pypy/module/pypyjit/test_pypy_c/test_b

[pypy-commit] pypy reflex-support: merge default into branch

2014-04-25 Thread wlav
Author: Wim Lavrijsen Branch: reflex-support Changeset: r70985:b81d95fa41f2 Date: 2014-04-25 10:53 -0700 http://bitbucket.org/pypy/pypy/changeset/b81d95fa41f2/ Log:merge default into branch diff --git a/lib-python/2.7/test/test_builtin.py b/lib-python/2.7/test/test_builtin.py --- a/lib-pyth

[pypy-commit] pypy default: cleanup test

2014-04-25 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r70992:298068f3d4ea Date: 2014-04-25 16:54 -0400 http://bitbucket.org/pypy/pypy/changeset/298068f3d4ea/ Log:cleanup test diff --git a/pypy/module/pypyjit/test_pypy_c/test_buffers.py b/pypy/module/pypyjit/test_pypy_c/test_buffers.py --- a/pypy/module/

[pypy-commit] pypy default: test/fix tcsetattr validation of attributes

2014-04-25 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r70993:e87d8dddb7f3 Date: 2014-04-25 19:38 -0400 http://bitbucket.org/pypy/pypy/changeset/e87d8dddb7f3/ Log:test/fix tcsetattr validation of attributes diff --git a/pypy/module/termios/interp_termios.py b/pypy/module/termios/interp_termios.py --- a/p

[pypy-commit] pypy default: unused

2014-04-25 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r70995:ab56be458bc6 Date: 2014-04-25 22:35 -0400 http://bitbucket.org/pypy/pypy/changeset/ab56be458bc6/ Log:unused diff --git a/pypy/module/cppyy/test/test_zjit.py b/pypy/module/cppyy/test/test_zjit.py --- a/pypy/module/cppyy/test/test_zjit.py +++ b/

[pypy-commit] pypy default: merge heads

2014-04-25 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r70994:844b089193cd Date: 2014-04-25 22:32 -0400 http://bitbucket.org/pypy/pypy/changeset/844b089193cd/ Log:merge heads diff --git a/pypy/module/cppyy/__init__.py b/pypy/module/cppyy/__init__.py --- a/pypy/module/cppyy/__init__.py +++ b/pypy/module/cp

[pypy-commit] pypy default: unused imports

2014-04-25 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r70996:19437b58b160 Date: 2014-04-25 23:34 -0400 http://bitbucket.org/pypy/pypy/changeset/19437b58b160/ Log:unused imports diff --git a/pypy/objspace/std/bufferobject.py b/pypy/objspace/std/bufferobject.py --- a/pypy/objspace/std/bufferobject.py +++

[pypy-commit] pypy default: fix test_ioctl_termios

2014-04-25 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r70997:3a67ef86d30d Date: 2014-04-26 00:08 -0400 http://bitbucket.org/pypy/pypy/changeset/3a67ef86d30d/ Log:fix test_ioctl_termios diff --git a/pypy/module/termios/test/test_termios.py b/pypy/module/termios/test/test_termios.py --- a/pypy/module/term

[pypy-commit] pypy default: pep8

2014-04-25 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r70998:f57d8ad3b852 Date: 2014-04-26 01:24 -0400 http://bitbucket.org/pypy/pypy/changeset/f57d8ad3b852/ Log:pep8 diff --git a/pypy/interpreter/main.py b/pypy/interpreter/main.py --- a/pypy/interpreter/main.py +++ b/pypy/interpreter/main.py @@ -15,10 +

[pypy-commit] pypy default: test/fix xrange rejecting floats

2014-04-25 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r70999:171d134c9340 Date: 2014-04-26 02:14 -0400 http://bitbucket.org/pypy/pypy/changeset/171d134c9340/ Log:test/fix xrange rejecting floats diff --git a/pypy/module/__builtin__/functional.py b/pypy/module/__builtin__/functional.py --- a/pypy/module/

[pypy-commit] cffi default: CPython: Better C -> Python conversion for integer constants

2014-04-25 Thread dalcinl
Author: Lisandro Dalcin Branch: Changeset: r1506:5e1105060c45 Date: 2014-04-25 12:23 +0300 http://bitbucket.org/cffi/cffi/changeset/5e1105060c45/ Log:CPython: Better C -> Python conversion for integer constants - Silent GCC -Wsign-compare diff --git a/cffi/vengine_cpy.py b/cffi/ve