[pypy-commit] pypy default: fix tests

2014-12-29 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r75156:15909b35f447 Date: 2014-12-30 09:58 +0200 http://bitbucket.org/pypy/pypy/changeset/15909b35f447/ Log:fix tests diff --git a/rpython/tool/jitlogparser/parser.py b/rpython/tool/jitlogparser/parser.py --- a/rpython/tool/jitlogparser/parser.

[pypy-commit] pypy pypy-dont-copy-ops: merge default

2014-12-29 Thread fijal
Author: Maciej Fijalkowski Branch: pypy-dont-copy-ops Changeset: r75155:e12313a8a8b5 Date: 2014-12-29 12:27 +0200 http://bitbucket.org/pypy/pypy/changeset/e12313a8a8b5/ Log:merge default diff --git a/lib-python/2.7/test/test_xml_etree.py b/lib-python/2.7/test/test_xml_etree.py --- a/lib-pyt

[pypy-commit] cffi default: Document ffi.from_buffer()

2014-12-29 Thread arigo
Author: Armin Rigo Branch: Changeset: r1613:758533c5b7f8 Date: 2014-12-30 04:17 +0100 http://bitbucket.org/cffi/cffi/changeset/758533c5b7f8/ Log:Document ffi.from_buffer() diff --git a/cffi/api.py b/cffi/api.py --- a/cffi/api.py +++ b/cffi/api.py @@ -267,9 +267,9 @@ return self._ba

[pypy-commit] cffi default: Document bcdbd8bc0c38. Change the future version number to 0.9.

2014-12-29 Thread arigo
Author: Armin Rigo Branch: Changeset: r1612:88b30bc17082 Date: 2014-12-30 04:04 +0100 http://bitbucket.org/cffi/cffi/changeset/88b30bc17082/ Log:Document bcdbd8bc0c38. Change the future version number to 0.9. diff --git a/doc/source/index.rst b/doc/source/index.rst --- a/doc/source/index.rs

[pypy-commit] cffi default: Make the function name at the start of each paragraph stand out more

2014-12-29 Thread arigo
Author: Armin Rigo Branch: Changeset: r1614:74e8d9218ff8 Date: 2014-12-30 04:21 +0100 http://bitbucket.org/cffi/cffi/changeset/74e8d9218ff8/ Log:Make the function name at the start of each paragraph stand out more diff --git a/doc/source/index.rst b/doc/source/index.rst --- a/doc/source/ind

[pypy-commit] cffi default: issue #169: offsetof('struct', 'a.b.c')

2014-12-29 Thread arigo
Author: Armin Rigo Branch: Changeset: r1611:bcdbd8bc0c38 Date: 2014-12-30 03:58 +0100 http://bitbucket.org/cffi/cffi/changeset/bcdbd8bc0c38/ Log:issue #169: offsetof('struct', 'a.b.c') diff --git a/cffi/api.py b/cffi/api.py --- a/cffi/api.py +++ b/cffi/api.py @@ -192,11 +192,12 @@ de

[pypy-commit] cffi default: Must also make 'sources' relative.

2014-12-29 Thread arigo
Author: Armin Rigo Branch: Changeset: r1610:419da551d501 Date: 2014-12-30 03:56 +0100 http://bitbucket.org/cffi/cffi/changeset/419da551d501/ Log:Must also make 'sources' relative. diff --git a/cffi/ffiplatform.py b/cffi/ffiplatform.py --- a/cffi/ffiplatform.py +++ b/cffi/ffiplatform.py @@ -

[pypy-commit] pypy py3.3: reapply ca139d96a0fa: fill in _STRUCT_TM_TIMES

2014-12-29 Thread pjenvey
Author: Philip Jenvey Branch: py3.3 Changeset: r75154:b60d4915a3f5 Date: 2014-07-27 15:44 -0700 http://bitbucket.org/pypy/pypy/changeset/b60d4915a3f5/ Log:reapply ca139d96a0fa: fill in _STRUCT_TM_TIMES diff --git a/pypy/module/time/__init__.py b/pypy/module/time/__init__.py --- a/pypy/module

[pypy-commit] pypy py3.3: reapply 8ccff189b82f: Changed the _get_inttime() to raise OverflowError.

2014-12-29 Thread Arjun Naik
Author: Arjun Naik Branch: py3.3 Changeset: r75153:9a110e6e733e Date: 2014-07-26 15:11 +0200 http://bitbucket.org/pypy/pypy/changeset/9a110e6e733e/ Log:reapply 8ccff189b82f: Changed the _get_inttime() to raise OverflowError. diff --git a/pypy/module/time/interp_time.py b/pypy/module/

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

2014-12-29 Thread pjenvey
Author: Philip Jenvey Branch: py3.3 Changeset: r75152:c393dc8e0fc4 Date: 2014-12-29 13:15 -0800 http://bitbucket.org/pypy/pypy/changeset/c393dc8e0fc4/ Log:merge py3k diff too long, truncating to 2000 out of 15290 lines diff --git a/README.rst b/README.rst --- a/README.rst +++ b/README.rst @

[pypy-commit] pypy py3.3: handle a base_encoding of 'utf-8' on osx

2014-12-29 Thread pjenvey
Author: Philip Jenvey Branch: py3.3 Changeset: r75151:24d64c593bda Date: 2014-12-29 13:12 -0800 http://bitbucket.org/pypy/pypy/changeset/24d64c593bda/ Log:handle a base_encoding of 'utf-8' on osx diff --git a/pypy/module/_codecs/interp_codecs.py b/pypy/module/_codecs/interp_codecs.py --- a/

[pypy-commit] pypy stdlib-2.7.9: Implemented load_verify_locations on _ssl.SSLContext

2014-12-29 Thread alex_gaynor
Author: Alex Gaynor Branch: stdlib-2.7.9 Changeset: r75150:bd472b0a403c Date: 2014-12-29 13:08 -0800 http://bitbucket.org/pypy/pypy/changeset/bd472b0a403c/ Log:Implemented load_verify_locations on _ssl.SSLContext diff --git a/pypy/module/_ssl/interp_ssl.py b/pypy/module/_ssl/interp_ssl.py --

[pypy-commit] pypy py3.3: Rework the OSError initialization, so that __init__ and __new__

2014-12-29 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75149:ad6333658219 Date: 2014-12-29 21:39 +0100 http://bitbucket.org/pypy/pypy/changeset/ad6333658219/ Log:Rework the OSError initialization, so that __init__ and __new__ can be overridden and accept additional arguments (CPython

[pypy-commit] pypy py3.3: Implement the opener parameter of io.open()

2014-12-29 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75148:8af0b2050bd1 Date: 2014-12-21 17:33 +0100 http://bitbucket.org/pypy/pypy/changeset/8af0b2050bd1/ Log:Implement the opener parameter of io.open() diff --git a/pypy/module/_io/interp_fileio.py b/pypy/module/_io/interp_fileio.py --- a

[pypy-commit] pypy py3.3: More fixes: tcl functions take strings, not bytes

2014-12-29 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75145:ac735d653e72 Date: 2014-12-21 11:22 +0100 http://bitbucket.org/pypy/pypy/changeset/ac735d653e72/ Log:More fixes: tcl functions take strings, not bytes diff --git a/lib_pypy/_tkinter/app.py b/lib_pypy/_tkinter/app.py --- a/lib_pypy/

[pypy-commit] pypy py3.3: tkinter: rename TclObject to Tcl_Obj, and expose it

2014-12-29 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75141:778fe234a558 Date: 2014-12-21 10:30 +0100 http://bitbucket.org/pypy/pypy/changeset/778fe234a558/ Log:tkinter: rename TclObject to Tcl_Obj, and expose it diff --git a/lib_pypy/_tkinter/__init__.py b/lib_pypy/_tkinter/__init__.py ---

[pypy-commit] pypy py3.3: test_ttk: Progress

2014-12-29 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75147:e761d5274b75 Date: 2014-12-21 12:32 +0100 http://bitbucket.org/pypy/pypy/changeset/e761d5274b75/ Log:test_ttk: Progress diff --git a/lib-python/3/tkinter/test/test_ttk/test_extensions.py b/lib-python/3/tkinter/test/test_ttk/test_e

[pypy-commit] pypy py3.3: tkinter: Fix conversion of varnames

2014-12-29 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75143:a640fa296140 Date: 2014-12-21 10:38 +0100 http://bitbucket.org/pypy/pypy/changeset/a640fa296140/ Log:tkinter: Fix conversion of varnames diff --git a/lib_pypy/_tkinter/app.py b/lib_pypy/_tkinter/app.py --- a/lib_pypy/_tkinter/app.p

[pypy-commit] pypy py3.3: Fix the last tcl.split failure.

2014-12-29 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75146:adef746e8660 Date: 2014-12-21 12:01 +0100 http://bitbucket.org/pypy/pypy/changeset/adef746e8660/ Log:Fix the last tcl.split failure. diff --git a/lib_pypy/_tkinter/app.py b/lib_pypy/_tkinter/app.py --- a/lib_pypy/_tkinter/app.py ++

[pypy-commit] pypy py3.3: Fix most tcl tests

2014-12-29 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75144:63b83c822ed6 Date: 2014-12-21 11:16 +0100 http://bitbucket.org/pypy/pypy/changeset/63b83c822ed6/ Log:Fix most tcl tests diff --git a/lib-python/3/tkinter/test/test_tkinter/test_variables.py b/lib-python/3/tkinter/test/test_tkinter

[pypy-commit] pypy py3.3: Add faulthandler._fatal_error()

2014-12-29 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75140:45ae7aa92dd8 Date: 2014-12-21 10:15 +0100 http://bitbucket.org/pypy/pypy/changeset/45ae7aa92dd8/ Log:Add faulthandler._fatal_error() diff --git a/pypy/module/faulthandler/__init__.py b/pypy/module/faulthandler/__init__.py --- a/py

[pypy-commit] pypy py3.3: Add Tcl_Obj.__eq__, fixes many tests

2014-12-29 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75142:baf22eaf17ee Date: 2014-12-21 10:33 +0100 http://bitbucket.org/pypy/pypy/changeset/baf22eaf17ee/ Log:Add Tcl_Obj.__eq__, fixes many tests diff --git a/lib_pypy/_tkinter/tclobj.py b/lib_pypy/_tkinter/tclobj.py --- a/lib_pypy/_tkinte

[pypy-commit] pypy py3.3: Fix a bit the stack trace formatted by FaultHandler

2014-12-29 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75139:3d0aa9a34f0a Date: 2014-12-19 20:30 +0100 http://bitbucket.org/pypy/pypy/changeset/3d0aa9a34f0a/ Log:Fix a bit the stack trace formatted by FaultHandler diff --git a/pypy/module/faulthandler/interp_faulthandler.py b/pypy/module/fa

[pypy-commit] pypy py3.3: Restore pickle of dict iterators.

2014-12-29 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.3 Changeset: r75138:3a37dfe596eb Date: 2014-12-19 20:26 +0100 http://bitbucket.org/pypy/pypy/changeset/3a37dfe596eb/ Log:Restore pickle of dict iterators. (The comment was wrong: we do have the original dict, this makes things much easier) dif

[pypy-commit] pypy default: trivial numpy error message compatibility

2014-12-29 Thread mattip
Author: mattip Branch: Changeset: r75137:2d5abc45da13 Date: 2014-12-29 21:30 +0200 http://bitbucket.org/pypy/pypy/changeset/2d5abc45da13/ Log:trivial numpy error message compatibility diff --git a/pypy/module/micronumpy/descriptor.py b/pypy/module/micronumpy/descriptor.py --- a/pypy/module

[pypy-commit] pypy slim-down-resumedescr: close to be merged branch

2014-12-29 Thread fijal
Author: Maciej Fijalkowski Branch: slim-down-resumedescr Changeset: r75135:10e9450c90cf Date: 2014-12-29 12:25 +0200 http://bitbucket.org/pypy/pypy/changeset/10e9450c90cf/ Log:close to be merged branch ___ pypy-commit mailing list pypy-commit@pytho

[pypy-commit] pypy default: Merge slim-down-resumedescr. It seems to bring down warmup times

2014-12-29 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r75136:dddfb36fd72f Date: 2014-12-29 12:26 +0200 http://bitbucket.org/pypy/pypy/changeset/dddfb36fd72f/ Log:Merge slim-down-resumedescr. It seems to bring down warmup times by about 5% on small benchmarks diff --git a/rpython/jit/backend

[pypy-commit] cffi default: no-op

2014-12-29 Thread arigo
Author: Armin Rigo Branch: Changeset: r1609:9163607c079e Date: 2014-12-29 09:45 +0100 http://bitbucket.org/cffi/cffi/changeset/9163607c079e/ Log:no-op diff --git a/c/_cffi_backend.c b/c/_cffi_backend.c --- a/c/_cffi_backend.c +++ b/c/_cffi_backend.c @@ -3563,8 +3563,8 @@ sprintf(ex

[pypy-commit] cffi default: Disossiate the version encoded in the verifier module file names

2014-12-29 Thread arigo
Author: Armin Rigo Branch: Changeset: r1608:84b177cfda19 Date: 2014-12-29 09:43 +0100 http://bitbucket.org/cffi/cffi/changeset/84b177cfda19/ Log:Disossiate the version encoded in the verifier module file names and the version of CFFI itself diff --git a/cffi/__init__.py b/cffi/__ini