[pypy-commit] pypy default: simple fixes

2016-10-01 Thread mattip
Author: Matti Picus Branch: Changeset: r87515:4e52c96a1637 Date: 2016-10-02 08:17 +0300 http://bitbucket.org/pypy/pypy/changeset/4e52c96a1637/ Log:simple fixes diff --git a/pypy/doc/whatsnew-head.rst b/pypy/doc/whatsnew-head.rst --- a/pypy/doc/whatsnew-head.rst +++

[pypy-commit] pypy py3k-test-cpyext: Properly port array.c to py3: some of the tests pass with -A

2016-10-01 Thread rlamy
Author: Ronan Lamy Branch: py3k-test-cpyext Changeset: r87513:dd1c6ff22873 Date: 2016-10-02 03:22 +0100 http://bitbucket.org/pypy/pypy/changeset/dd1c6ff22873/ Log:Properly port array.c to py3: some of the tests pass with -A diff --git a/pypy/module/cpyext/test/array.c

[pypy-commit] pypy py3k-test-cpyext: Don't import rpython.tool.udir from pypy.tool.cpyext.extbuild, since it's not py3-compatible

2016-10-01 Thread rlamy
Author: Ronan Lamy Branch: py3k-test-cpyext Changeset: r87512:4e5503abe3ab Date: 2016-10-02 03:04 +0100 http://bitbucket.org/pypy/pypy/changeset/4e5503abe3ab/ Log:Don't import rpython.tool.udir from pypy.tool.cpyext.extbuild, since it's not py3-compatible diff

[pypy-commit] pypy py3k-test-cpyext: Get import_extension() to work on -A

2016-10-01 Thread rlamy
Author: Ronan Lamy Branch: py3k-test-cpyext Changeset: r87514:14eb3647cc89 Date: 2016-10-02 03:55 +0100 http://bitbucket.org/pypy/pypy/changeset/14eb3647cc89/ Log:Get import_extension() to work on -A diff --git a/pypy/module/cpyext/test/test_cpyext.py

[pypy-commit] pypy py3k-test-cpyext: Try to run some cpyext tests with -A

2016-10-01 Thread rlamy
Author: Ronan Lamy Branch: py3k-test-cpyext Changeset: r87511:243ced1b2519 Date: 2016-10-02 01:06 +0100 http://bitbucket.org/pypy/pypy/changeset/243ced1b2519/ Log:Try to run some cpyext tests with -A diff --git a/pypy/module/cpyext/test/conftest.py

[pypy-commit] pypy py3k-test-cpyext: hg merge test-cpyext

2016-10-01 Thread rlamy
Author: Ronan Lamy Branch: py3k-test-cpyext Changeset: r87510:d3ae6112042c Date: 2016-10-01 19:38 +0100 http://bitbucket.org/pypy/pypy/changeset/d3ae6112042c/ Log:hg merge test-cpyext diff --git a/pypy/module/cpyext/test/test_cpyext.py

[pypy-commit] pypy stdlib-2.7.12: cpython issue4806: Avoid masking TypeError when *-unpacking a generator

2016-10-01 Thread pjenvey
Author: Philip Jenvey Branch: stdlib-2.7.12 Changeset: r87509:0146779efba0 Date: 2016-10-01 14:15 -0700 http://bitbucket.org/pypy/pypy/changeset/0146779efba0/ Log:cpython issue4806: Avoid masking TypeError when *-unpacking a generator diff --git

[pypy-commit] pypy stdlib-2.7.12: remove TestOrderedDict which lives in 2.7.12's test_ordered_dict and

2016-10-01 Thread pjenvey
Author: Philip Jenvey Branch: stdlib-2.7.12 Changeset: r87507:08e15bc54f3e Date: 2016-10-01 12:16 -0700 http://bitbucket.org/pypy/pypy/changeset/08e15bc54f3e/ Log:remove TestOrderedDict which lives in 2.7.12's test_ordered_dict and integrate our customizations

[pypy-commit] pypy stdlib-2.7.12: update to 2.7.12 tests

2016-10-01 Thread pjenvey
Author: Philip Jenvey Branch: stdlib-2.7.12 Changeset: r87506:85868c51f751 Date: 2016-10-01 12:12 -0700 http://bitbucket.org/pypy/pypy/changeset/85868c51f751/ Log:update to 2.7.12 tests diff --git a/lib-python/conftest.py b/lib-python/conftest.py ---

[pypy-commit] pypy vendor/stdlib: update the 2.7 stdlib to 2.7.12

2016-10-01 Thread pjenvey
Author: Philip Jenvey Branch: vendor/stdlib Changeset: r87504:e6575c58d3aa Date: 2016-10-01 11:14 -0700 http://bitbucket.org/pypy/pypy/changeset/e6575c58d3aa/ Log:update the 2.7 stdlib to 2.7.12 diff too long, truncating to 2000 out of 26235 lines diff --git

[pypy-commit] pypy stdlib-2.7.12: merge vendor/stdlib (2.7.12)

2016-10-01 Thread pjenvey
Author: Philip Jenvey Branch: stdlib-2.7.12 Changeset: r87505:37de60078373 Date: 2016-10-01 12:04 -0700 http://bitbucket.org/pypy/pypy/changeset/37de60078373/ Log:merge vendor/stdlib (2.7.12) diff too long, truncating to 2000 out of 25095 lines diff --git

[pypy-commit] pypy buffer-interface2: from the docs of memoryview, "If ndim is 0, strides and suboffsets must be NULL"

2016-10-01 Thread mattip
Author: Matti Picus Branch: buffer-interface2 Changeset: r87503:1112dcf14c96 Date: 2016-10-01 22:13 +0300 http://bitbucket.org/pypy/pypy/changeset/1112dcf14c96/ Log:from the docs of memoryview, "If ndim is 0, strides and suboffsets must be NULL" diff --git

[pypy-commit] pypy py3.5: With the dict unpacking syntax {1:2, **dict, 3:4} ast.Dict.keys can contain null values.

2016-10-01 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py3.5 Changeset: r87502:a45e290ae6ee Date: 2016-10-01 21:10 +0200 http://bitbucket.org/pypy/pypy/changeset/a45e290ae6ee/ Log:With the dict unpacking syntax {1:2, **dict, 3:4} ast.Dict.keys can contain null values. Fix a

[pypy-commit] pypy test-cpyext: Move support code to pypy.tool.cpyext.extbuild

2016-10-01 Thread rlamy
Author: Ronan Lamy Branch: test-cpyext Changeset: r87501:53117faa3adf Date: 2016-10-01 19:32 +0100 http://bitbucket.org/pypy/pypy/changeset/53117faa3adf/ Log:Move support code to pypy.tool.cpyext.extbuild (This a step towards making it possible to import and

[pypy-commit] pypy py35-getbuiltin: Good: we don't update sys.modules anymore in baseobjspace.py

2016-10-01 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: py35-getbuiltin Changeset: r87500:9bd1f653a930 Date: 2016-10-01 19:25 +0200 http://bitbucket.org/pypy/pypy/changeset/9bd1f653a930/ Log:Good: we don't update sys.modules anymore in baseobjspace.py Add a workaround for a

[pypy-commit] pypy default: Fix test for arm

2016-10-01 Thread arigo
Author: Armin Rigo Branch: Changeset: r87499:87c5d21350cd Date: 2016-10-01 15:46 +0200 http://bitbucket.org/pypy/pypy/changeset/87c5d21350cd/ Log:Fix test for arm diff --git a/rpython/jit/backend/llsupport/test/test_gc_integration.py

[pypy-commit] pypy py3k: hg merge default

2016-10-01 Thread arigo
Author: Armin Rigo Branch: py3k Changeset: r87498:aaa04894afde Date: 2016-10-01 12:22 +0200 http://bitbucket.org/pypy/pypy/changeset/aaa04894afde/ Log:hg merge default ___ pypy-commit mailing list pypy-commit@python.org

[pypy-commit] pypy py3k-faulthandler: hg merge default

2016-10-01 Thread arigo
Author: Armin Rigo Branch: py3k-faulthandler Changeset: r87495:4cc420d0f7f8 Date: 2016-10-01 12:19 +0200 http://bitbucket.org/pypy/pypy/changeset/4cc420d0f7f8/ Log:hg merge default diff --git a/pypy/interpreter/app_main.py b/pypy/interpreter/app_main.py ---

[pypy-commit] pypy py3k: hg merge py3k-faulthandler

2016-10-01 Thread arigo
Author: Armin Rigo Branch: py3k Changeset: r87497:0863ca6a99cc Date: 2016-10-01 12:20 +0200 http://bitbucket.org/pypy/pypy/changeset/0863ca6a99cc/ Log:hg merge py3k-faulthandler Merge the py3k version of faulthandler. diff --git a/pypy/config/pypyoption.py

[pypy-commit] pypy py3k-faulthandler: hg merge py3k

2016-10-01 Thread arigo
Author: Armin Rigo Branch: py3k-faulthandler Changeset: r87494:62275cf72b32 Date: 2016-10-01 12:15 +0200 http://bitbucket.org/pypy/pypy/changeset/62275cf72b32/ Log:hg merge py3k diff too long, truncating to 2000 out of 3262 lines diff --git a/Makefile b/Makefile ---

[pypy-commit] pypy py3k-faulthandler: ready to merge

2016-10-01 Thread arigo
Author: Armin Rigo Branch: py3k-faulthandler Changeset: r87496:66638a75ce5c Date: 2016-10-01 12:20 +0200 http://bitbucket.org/pypy/pypy/changeset/66638a75ce5c/ Log:ready to merge ___ pypy-commit mailing list pypy-commit@python.org

[pypy-commit] pypy default: hg merge faulthandler

2016-10-01 Thread arigo
Author: Armin Rigo Branch: Changeset: r87493:931bb35a83bf Date: 2016-10-01 11:58 +0200 http://bitbucket.org/pypy/pypy/changeset/931bb35a83bf/ Log:hg merge faulthandler Port the 'faulthandler' module to PyPy default. This module is standard in Python 3.3 but

[pypy-commit] pypy faulthandler: fix

2016-10-01 Thread arigo
Author: Armin Rigo Branch: faulthandler Changeset: r87492:fbb4fa5a6d49 Date: 2016-10-01 11:17 +0200 http://bitbucket.org/pypy/pypy/changeset/fbb4fa5a6d49/ Log:fix diff --git a/pypy/module/faulthandler/handler.py b/pypy/module/faulthandler/handler.py ---

[pypy-commit] pypy faulthandler: A branch to backport py3k-faulthandler

2016-10-01 Thread arigo
Author: Armin Rigo Branch: faulthandler Changeset: r87490:7e361495eaca Date: 2016-10-01 10:58 +0200 http://bitbucket.org/pypy/pypy/changeset/7e361495eaca/ Log:A branch to backport py3k-faulthandler ___ pypy-commit mailing list

[pypy-commit] pypy faulthandler: Manual graft of the py3k-faulthandler branch

2016-10-01 Thread arigo
Author: Armin Rigo Branch: faulthandler Changeset: r87491:15ef8db2a0e7 Date: 2016-10-01 11:16 +0200 http://bitbucket.org/pypy/pypy/changeset/15ef8db2a0e7/ Log:Manual graft of the py3k-faulthandler branch diff --git a/pypy/config/pypyoption.py b/pypy/config/pypyoption.py ---

[pypy-commit] pypy py3k: hg merge default

2016-10-01 Thread arigo
Author: Armin Rigo Branch: py3k Changeset: r87488:160c8ded58c9 Date: 2016-10-01 10:46 +0200 http://bitbucket.org/pypy/pypy/changeset/160c8ded58c9/ Log:hg merge default diff --git a/pypy/module/__pypy__/__init__.py b/pypy/module/__pypy__/__init__.py ---

[pypy-commit] pypy py3k: Use rtime.clock_{gettime,settime,getres}

2016-10-01 Thread arigo
Author: Armin Rigo Branch: py3k Changeset: r87489:1b443a0430fd Date: 2016-10-01 10:55 +0200 http://bitbucket.org/pypy/pypy/changeset/1b443a0430fd/ Log:Use rtime.clock_{gettime,settime,getres} diff --git a/pypy/module/time/__init__.py b/pypy/module/time/__init__.py ---

[pypy-commit] pypy default: Expose all defined 'CLOCK_' names from rtime.py

2016-10-01 Thread arigo
Author: Armin Rigo Branch: Changeset: r87487:2d371cd33c0f Date: 2016-10-01 10:46 +0200 http://bitbucket.org/pypy/pypy/changeset/2d371cd33c0f/ Log:Expose all defined 'CLOCK_' names from rtime.py diff --git a/pypy/module/__pypy__/__init__.py

[pypy-commit] pypy default: add some more CLOCK_xxx constants that exist on some platforms

2016-10-01 Thread arigo
Author: Armin Rigo Branch: Changeset: r87486:8f678b4a73b3 Date: 2016-10-01 10:42 +0200 http://bitbucket.org/pypy/pypy/changeset/8f678b4a73b3/ Log:add some more CLOCK_xxx constants that exist on some platforms diff --git a/rpython/rlib/rtime.py b/rpython/rlib/rtime.py ---

[pypy-commit] pypy py3k: hg merge default

2016-10-01 Thread arigo
Author: Armin Rigo Branch: py3k Changeset: r87485:863ec7aea4f4 Date: 2016-10-01 10:37 +0200 http://bitbucket.org/pypy/pypy/changeset/863ec7aea4f4/ Log:hg merge default diff --git a/pypy/module/__pypy__/__init__.py b/pypy/module/__pypy__/__init__.py ---

[pypy-commit] pypy default: Use rtime.c_clock_gettime() here

2016-10-01 Thread arigo
Author: Armin Rigo Branch: Changeset: r87484:d5e85ca41a7f Date: 2016-10-01 10:36 +0200 http://bitbucket.org/pypy/pypy/changeset/d5e85ca41a7f/ Log:Use rtime.c_clock_gettime() here diff --git a/pypy/module/__pypy__/__init__.py b/pypy/module/__pypy__/__init__.py ---

[pypy-commit] pypy default: Move clock_{gettime, getres, settime} entirely to rpython/rlib/rtime, with tests

2016-10-01 Thread arigo
Author: Armin Rigo Branch: Changeset: r87483:fbace1f687b0 Date: 2016-10-01 10:25 +0200 http://bitbucket.org/pypy/pypy/changeset/fbace1f687b0/ Log:Move clock_{gettime,getres,settime} entirely to rpython/rlib/rtime, with tests diff --git a/rpython/rlib/rtime.py

[pypy-commit] pypy default: sys.path issues (thanks matti)

2016-10-01 Thread arigo
Author: Armin Rigo Branch: Changeset: r87482:6642fe40f5f4 Date: 2016-10-01 10:16 +0200 http://bitbucket.org/pypy/pypy/changeset/6642fe40f5f4/ Log:sys.path issues (thanks matti) diff --git a/pypy/tool/build_cffi_imports.py b/pypy/tool/build_cffi_imports.py ---