[pypy-commit] extradoc extradoc: in-progress

2016-01-06 Thread arigo
Author: Armin Rigo Branch: extradoc Changeset: r5591:d5d6783367e1 Date: 2016-01-06 11:18 +0100 http://bitbucket.org/pypy/extradoc/changeset/d5d6783367e1/ Log:in-progress diff --git a/blog/draft/cffi-embedding.rst b/blog/draft/cffi-embedding.rst --- a/blog/draft/cffi-embedding.rst +++ b/blog/

[pypy-commit] extradoc extradoc: updates

2016-01-06 Thread arigo
Author: Armin Rigo Branch: extradoc Changeset: r5592:ba9cf2218c65 Date: 2016-01-06 11:49 +0100 http://bitbucket.org/pypy/extradoc/changeset/ba9cf2218c65/ Log:updates diff --git a/blog/draft/cffi-embedding.rst b/blog/draft/cffi-embedding.rst --- a/blog/draft/cffi-embedding.rst +++ b/blog/draf

[pypy-commit] cffi default: emphasis

2016-01-06 Thread arigo
Author: Armin Rigo Branch: Changeset: r2528:24e89b804296 Date: 2016-01-06 12:28 +0100 http://bitbucket.org/cffi/cffi/changeset/24e89b804296/ Log:emphasis diff --git a/doc/source/using.rst b/doc/source/using.rst --- a/doc/source/using.rst +++ b/doc/source/using.rst @@ -476,7 +476,7 @@ ``@ff

[pypy-commit] cffi default: Add vararg demo

2016-01-06 Thread arigo
Author: Armin Rigo Branch: Changeset: r2529:e3e506a393a6 Date: 2016-01-06 12:33 +0100 http://bitbucket.org/cffi/cffi/changeset/e3e506a393a6/ Log:Add vararg demo diff --git a/demo/extern_python_varargs.py b/demo/extern_python_varargs.py new file mode 100644 --- /dev/null +++ b/demo/extern_py

[pypy-commit] pypy default: Crash with the same UnpicklingError as CPython when asked to unpickle

2016-01-06 Thread arigo
Author: Armin Rigo Branch: Changeset: r81597:5460d8ed7191 Date: 2016-01-06 13:20 +0100 http://bitbucket.org/pypy/pypy/changeset/5460d8ed7191/ Log:Crash with the same UnpicklingError as CPython when asked to unpickle a string with an invalid load key diff --git a/lib_pypy/cPickle.py

[pypy-commit] pypy default: Better use %r than '%s' in case it's a non-printable byte

2016-01-06 Thread arigo
Author: Armin Rigo Branch: Changeset: r81598:c245f85e49a9 Date: 2016-01-06 13:23 +0100 http://bitbucket.org/pypy/pypy/changeset/c245f85e49a9/ Log:Better use %r than '%s' in case it's a non-printable byte diff --git a/lib_pypy/cPickle.py b/lib_pypy/cPickle.py --- a/lib_pypy/cPickle.py +++ b/

[pypy-commit] pypy s390x-backend: merged default

2016-01-06 Thread plan_rich
Author: Richard Plangger Branch: s390x-backend Changeset: r81599:b6d3c78012f2 Date: 2016-01-06 13:28 +0100 http://bitbucket.org/pypy/pypy/changeset/b6d3c78012f2/ Log:merged default added stubs for malloc nursery set the jf_descr and gcmap too early (in generate quick_failure), that is

[pypy-commit] pypy default: 32-bit fix

2016-01-06 Thread arigo
Author: Armin Rigo Branch: Changeset: r81600:c0170b8797bc Date: 2016-01-06 13:30 +0100 http://bitbucket.org/pypy/pypy/changeset/c0170b8797bc/ Log:32-bit fix diff --git a/rpython/jit/backend/llgraph/runner.py b/rpython/jit/backend/llgraph/runner.py --- a/rpython/jit/backend/llgraph/runner.p

[pypy-commit] pypy s390x-backend: removed debug statement, r2 is the return register on the s390x not r3

2016-01-06 Thread plan_rich
Author: Richard Plangger Branch: s390x-backend Changeset: r81601:6151e73da389 Date: 2016-01-06 14:52 +0100 http://bitbucket.org/pypy/pypy/changeset/6151e73da389/ Log:removed debug statement, r2 is the return register on the s390x not r3 diff --git a/rpython/jit/backend/zarch/callbuil

[pypy-commit] cffi static-callback-embedding: merge heads

2016-01-06 Thread arigo
Author: Armin Rigo Branch: static-callback-embedding Changeset: r2532:4b2de9517c5d Date: 2016-01-06 21:50 +0100 http://bitbucket.org/cffi/cffi/changeset/4b2de9517c5d/ Log:merge heads diff --git a/testing/embedding/test_basic.py b/testing/embedding/test_basic.py --- a/testing/embedding/test_b

[pypy-commit] cffi static-callback-embedding: Check that the module is present in sys.modules at this point,

2016-01-06 Thread arigo
Author: Armin Rigo Branch: static-callback-embedding Changeset: r2530:15ecadc24cb7 Date: 2016-01-06 21:28 +0100 http://bitbucket.org/cffi/cffi/changeset/15ecadc24cb7/ Log:Check that the module is present in sys.modules at this point, and that it is re-importable diff --git a/testing/

[pypy-commit] cffi default: Add a passing test about "from mymodule import *"

2016-01-06 Thread arigo
Author: Armin Rigo Branch: Changeset: r2531:4b3ae105e768 Date: 2016-01-06 21:38 +0100 http://bitbucket.org/cffi/cffi/changeset/4b3ae105e768/ Log:Add a passing test about "from mymodule import *" diff --git a/testing/cffi1/test_new_ffi_1.py b/testing/cffi1/test_new_ffi_1.py --- a/testing/cff