[pypy-commit] cffi default: Document 'relative_to'.

2014-12-31 Thread arigo
Author: Armin Rigo Branch: Changeset: r1616:f7fa2106ddf3 Date: 2014-12-31 19:34 +0100 http://bitbucket.org/cffi/cffi/changeset/f7fa2106ddf3/ Log:Document 'relative_to'. diff --git a/doc/source/index.rst b/doc/source/index.rst --- a/doc/source/index.rst +++ b/doc/source/index.rst @@ -673,7 +

[pypy-commit] pypy default: Change the default C++ compiler from 'cc' to 'c++'. On CPython this setting

2014-12-31 Thread arigo
Author: Armin Rigo Branch: Changeset: r75192:c6e45dfbda90 Date: 2014-12-31 19:10 +0100 http://bitbucket.org/pypy/pypy/changeset/c6e45dfbda90/ Log:Change the default C++ compiler from 'cc' to 'c++'. On CPython this setting is ignored anyway, but on PyPy the value 'cc' creates this

[pypy-commit] cffi default: Recognize more literal constants, notably octals and chars

2014-12-31 Thread arigo
Author: Armin Rigo Branch: Changeset: r1615:051a8e70baab Date: 2014-12-31 18:48 +0100 http://bitbucket.org/cffi/cffi/changeset/051a8e70baab/ Log:Recognize more literal constants, notably octals and chars diff --git a/cffi/cparser.py b/cffi/cparser.py --- a/cffi/cparser.py +++ b/cffi/cparser

[pypy-commit] pypy default: (larstiq) Tell virtualenv to copy libpypy-c.dylib as well.

2014-12-31 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: Changeset: r75191:3fcbbd6f6e29 Date: 2014-12-31 16:39 +0100 http://bitbucket.org/pypy/pypy/changeset/3fcbbd6f6e29/ Log:(larstiq) Tell virtualenv to copy libpypy-c.dylib as well. diff --git a/lib-python/2.7/subprocess.py b/lib-python/2.7/subprocess.py ---

[pypy-commit] pypy py3.3: Fix compiler tests, broken when I added the __qualname__ attribute.

2014-12-31 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75188:b768017bc82f Date: 2014-12-31 14:29 +0100 http://bitbucket.org/pypy/pypy/changeset/b768017bc82f/ Log:Fix compiler tests, broken when I added the __qualname__ attribute. diff --git a/pypy/interpreter/astcompiler/codegen.py b/pypy/i

[pypy-commit] pypy py3.3: Fix many tests in interpreter/

2014-12-31 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75189:21aecd71f599 Date: 2014-12-31 16:24 +0100 http://bitbucket.org/pypy/pypy/changeset/21aecd71f599/ Log:Fix many tests in interpreter/ diff --git a/pypy/interpreter/app_main.py b/pypy/interpreter/app_main.py --- a/pypy/interpreter/app

[pypy-commit] pypy py3.3: audioop: Use cffi instead of ctypes to create mutable buffers

2014-12-31 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75190:f9375d4e25c3 Date: 2014-12-31 16:32 +0100 http://bitbucket.org/pypy/pypy/changeset/f9375d4e25c3/ Log:audioop: Use cffi instead of ctypes to create mutable buffers also precompile the module. diff --git a/lib_pypy/audioop.py