[pypy-commit] pypy default: Use angular brackets on the artificial name

2015-07-04 Thread arigo
Author: Armin Rigo Branch: Changeset: r78423:613c07b2b3ad Date: 2015-07-04 09:26 +0200 http://bitbucket.org/pypy/pypy/changeset/613c07b2b3ad/ Log:Use angular brackets on the artificial name diff --git a/pypy/interpreter/generator.py b/pypy/interpreter/generator.py --- a/pypy/interpreter/gen

[pypy-commit] pypy int-float-list-strategy: Close branch ready to merge

2015-07-04 Thread arigo
Author: Armin Rigo Branch: int-float-list-strategy Changeset: r78424:4e91fd7c06db Date: 2015-07-04 11:17 +0200 http://bitbucket.org/pypy/pypy/changeset/4e91fd7c06db/ Log:Close branch ready to merge ___ pypy-commit mailing list pypy-commit@python.or

[pypy-commit] pypy default: hg merge int-float-list-strategy

2015-07-04 Thread arigo
Author: Armin Rigo Branch: Changeset: r78425:d369501b8f6d Date: 2015-07-04 11:19 +0200 http://bitbucket.org/pypy/pypy/changeset/d369501b8f6d/ Log:hg merge int-float-list-strategy Add a list strategy for lists that store both floats and 32-bit integers. The latter are encoded

[pypy-commit] pypy py3.3: hg merge py3k

2015-07-04 Thread mjacob
Author: Manuel Jacob Branch: py3.3 Changeset: r78426:d9dca9ea01f3 Date: 2015-07-04 16:05 +0200 http://bitbucket.org/pypy/pypy/changeset/d9dca9ea01f3/ Log:hg merge py3k diff too long, truncating to 2000 out of 2155 lines diff --git a/lib-python/2.7/test/test_urllib2.py b/lib-python/2.7/test

[pypy-commit] cffi default: Issue #115: document the assignments where we store a list or a dict.

2015-07-04 Thread arigo
Author: Armin Rigo Branch: Changeset: r2202:2763b22591f2 Date: 2015-07-04 18:19 +0200 http://bitbucket.org/cffi/cffi/changeset/2763b22591f2/ Log:Issue #115: document the assignments where we store a list or a dict. diff --git a/doc/source/using.rst b/doc/source/using.rst --- a/doc/s

[pypy-commit] pypy default: Add a FAQ entry about sandboxing

2015-07-04 Thread arigo
Author: Armin Rigo Branch: Changeset: r78427:a3cfaaba2f49 Date: 2015-07-04 18:56 +0200 http://bitbucket.org/pypy/pypy/changeset/a3cfaaba2f49/ Log:Add a FAQ entry about sandboxing diff --git a/pypy/doc/faq.rst b/pypy/doc/faq.rst --- a/pypy/doc/faq.rst +++ b/pypy/doc/faq.rst @@ -70,6 +70,20 @

[pypy-commit] pypy default: fix test after changes in 36a1899115e0

2015-07-04 Thread rlamy
Author: Ronan Lamy Branch: Changeset: r78428:75d199ee1dc7 Date: 2015-07-04 19:23 +0200 http://bitbucket.org/pypy/pypy/changeset/75d199ee1dc7/ Log:fix test after changes in 36a1899115e0 diff --git a/pypy/module/pypyjit/test_pypy_c/test_micronumpy.py b/pypy/module/pypyjit/test_pypy_c/test_mi

[pypy-commit] pypy default: add comment

2015-07-04 Thread arigo
Author: Armin Rigo Branch: Changeset: r78429:318e8acc19df Date: 2015-07-04 19:39 +0200 http://bitbucket.org/pypy/pypy/changeset/318e8acc19df/ Log:add comment diff --git a/rpython/jit/backend/x86/assembler.py b/rpython/jit/backend/x86/assembler.py --- a/rpython/jit/backend/x86/assembler.py

[pypy-commit] cffi default: Use the logic in cgc.c to implement ffi.gc() also for the pure Python

2015-07-04 Thread arigo
Author: Armin Rigo Branch: Changeset: r2203:e12558a3ce6b Date: 2015-07-04 19:57 +0200 http://bitbucket.org/cffi/cffi/changeset/e12558a3ce6b/ Log:Use the logic in cgc.c to implement ffi.gc() also for the pure Python in-line version of FFI diff --git a/c/_cffi_backend.c b/c/_cffi_back

[pypy-commit] pypy default: Test and fix in the annotator! Still!

2015-07-04 Thread arigo
Author: Armin Rigo Branch: Changeset: r78430:705d7abb7534 Date: 2015-07-04 20:09 +0200 http://bitbucket.org/pypy/pypy/changeset/705d7abb7534/ Log:Test and fix in the annotator! Still! diff --git a/rpython/annotator/builtin.py b/rpython/annotator/builtin.py --- a/rpython/annotator/builtin.py

[pypy-commit] pypy default: Import and copy cffi/e12558a3ce6b

2015-07-04 Thread arigo
Author: Armin Rigo Branch: Changeset: r78431:9a4cb1384683 Date: 2015-07-04 20:39 +0200 http://bitbucket.org/pypy/pypy/changeset/9a4cb1384683/ Log:Import and copy cffi/e12558a3ce6b diff --git a/lib_pypy/cffi/api.py b/lib_pypy/cffi/api.py --- a/lib_pypy/cffi/api.py +++ b/lib_pypy/cffi/api.py

[pypy-commit] cffi default: New argument "onerror" on ffi.callback()

2015-07-04 Thread arigo
Author: Armin Rigo Branch: Changeset: r2204:2b30856ad741 Date: 2015-07-04 21:52 +0200 http://bitbucket.org/cffi/cffi/changeset/2b30856ad741/ Log:New argument "onerror" on ffi.callback() diff --git a/c/_cffi_backend.c b/c/_cffi_backend.c --- a/c/_cffi_backend.c +++ b/c/_cffi_backend.c @@ -47

[pypy-commit] cffi default: 'onerror' can also return a custom value to return

2015-07-04 Thread arigo
Author: Armin Rigo Branch: Changeset: r2205:bdbb14a1b774 Date: 2015-07-04 22:44 +0200 http://bitbucket.org/cffi/cffi/changeset/bdbb14a1b774/ Log:'onerror' can also return a custom value to return diff --git a/c/_cffi_backend.c b/c/_cffi_backend.c --- a/c/_cffi_backend.c +++ b/c/_cffi_backen

[pypy-commit] cffi default: Show a semi-hackish way to get at the value of the arguments when the

2015-07-04 Thread arigo
Author: Armin Rigo Branch: Changeset: r2206:5d494c19cb68 Date: 2015-07-04 23:03 +0200 http://bitbucket.org/cffi/cffi/changeset/5d494c19cb68/ Log:Show a semi-hackish way to get at the value of the arguments when the crash occurred. diff --git a/testing/cffi0/test_ffi_backend.py b/te

[pypy-commit] pypy cffi-callback-onerror: Implement 'onerror' in exactly the same way as cffi on CPython

2015-07-04 Thread arigo
Author: Armin Rigo Branch: cffi-callback-onerror Changeset: r78433:77365fd8018a Date: 2015-07-04 23:30 +0200 http://bitbucket.org/pypy/pypy/changeset/77365fd8018a/ Log:Implement 'onerror' in exactly the same way as cffi on CPython diff --git a/pypy/interpreter/error.py b/pypy/interpreter/err

[pypy-commit] pypy cffi-callback-onerror: hg merge default

2015-07-04 Thread arigo
Author: Armin Rigo Branch: cffi-callback-onerror Changeset: r78432:088ea8f70900 Date: 2015-07-04 23:19 +0200 http://bitbucket.org/pypy/pypy/changeset/088ea8f70900/ Log:hg merge default diff too long, truncating to 2000 out of 4366 lines diff --git a/lib-python/2.7/test/test_urllib2.py b/li

[pypy-commit] cffi default: Generalize the test for pypy

2015-07-04 Thread arigo
Author: Armin Rigo Branch: Changeset: r2207:5882a34c8d29 Date: 2015-07-04 23:32 +0200 http://bitbucket.org/cffi/cffi/changeset/5882a34c8d29/ Log:Generalize the test for pypy diff --git a/c/test_c.py b/c/test_c.py --- a/c/test_c.py +++ b/c/test_c.py @@ -1249,7 +1249,7 @@ During the call t

[pypy-commit] pypy default: Translation fix

2015-07-04 Thread arigo
Author: Armin Rigo Branch: Changeset: r78434:f87b995d0d7a Date: 2015-07-04 23:35 +0200 http://bitbucket.org/pypy/pypy/changeset/f87b995d0d7a/ Log:Translation fix diff --git a/pypy/module/_cffi_backend/ffi_obj.py b/pypy/module/_cffi_backend/ffi_obj.py --- a/pypy/module/_cffi_backend/ffi_obj

[pypy-commit] pypy cffi-callback-onerror: Close branch, ready to merge

2015-07-04 Thread arigo
Author: Armin Rigo Branch: cffi-callback-onerror Changeset: r78435:e4268e240c4b Date: 2015-07-04 23:36 +0200 http://bitbucket.org/pypy/pypy/changeset/e4268e240c4b/ Log:Close branch, ready to merge ___ pypy-commit mailing list pypy-commit@python.org

[pypy-commit] pypy default: hg merge cffi-callback-onerror

2015-07-04 Thread arigo
Author: Armin Rigo Branch: Changeset: r78436:2e6be5bbe1dc Date: 2015-07-04 23:38 +0200 http://bitbucket.org/pypy/pypy/changeset/2e6be5bbe1dc/ Log:hg merge cffi-callback-onerror update to cffi 'onerror' argument on callbacks (2b30856ad741, bdbb14a1b774) diff --git a/lib_pypy

[pypy-commit] pypy default: Document branches

2015-07-04 Thread arigo
Author: Armin Rigo Branch: Changeset: r78437:ba44600bac9b Date: 2015-07-04 23:47 +0200 http://bitbucket.org/pypy/pypy/changeset/ba44600bac9b/ Log:Document branches diff --git a/pypy/doc/whatsnew-head.rst b/pypy/doc/whatsnew-head.rst --- a/pypy/doc/whatsnew-head.rst +++ b/pypy/doc/whatsnew-h

[pypy-commit] cffi default: Minor clean up

2015-07-04 Thread arigo
Author: Armin Rigo Branch: Changeset: r2208:d1604ab4ecc6 Date: 2015-07-05 02:35 +0200 http://bitbucket.org/cffi/cffi/changeset/d1604ab4ecc6/ Log:Minor clean up diff --git a/c/_cffi_backend.c b/c/_cffi_backend.c --- a/c/_cffi_backend.c +++ b/c/_cffi_backend.c @@ -4792,8 +4792,16 @@ retu