[pypy-commit] pypy.org extradoc: numpydonate: Link to numpy blog feed and to buildbot dashboard

2014-11-20 Thread techtonik
Author: anatoly techtonik Branch: extradoc Changeset: r555:2b866097e40d Date: 2014-11-19 15:32 +0300 http://bitbucket.org/pypy/pypy.org/changeset/2b866097e40d/ Log:numpydonate: Link to numpy blog feed and to buildbot dashboard diff --git a/numpydonate.html b/numpydonate.html --- a/numpydonat

[pypy-commit] pypy.org extradoc: Still add README for Bitbucket

2014-11-20 Thread techtonik
Author: anatoly techtonik Branch: extradoc Changeset: r553:bd0d982e013b Date: 2014-11-19 12:24 +0300 http://bitbucket.org/pypy/pypy.org/changeset/bd0d982e013b/ Log:Still add README for Bitbucket diff --git a/README-DO-NOT-EDIT b/README copy from README-DO-NOT-EDIT copy to README --- a/README

[pypy-commit] pypy.org extradoc: Beautify navigation - insert after Contact

2014-11-20 Thread techtonik
Author: anatoly techtonik Branch: extradoc Changeset: r554:64b115a0a5c8 Date: 2014-11-19 12:28 +0300 http://bitbucket.org/pypy/pypy.org/changeset/64b115a0a5c8/ Log:Beautify navigation - insert after Contact diff --git a/archive.html b/archive.html --- a/archive.html +++ b/archive.html @@ -3

[pypy-commit] pypy default: Update the doc: one difference with CPython disappeared, but

2014-11-20 Thread arigo
Author: Armin Rigo Branch: Changeset: r74607:dccc80a97cab Date: 2014-11-20 11:22 +0100 http://bitbucket.org/pypy/pypy/changeset/dccc80a97cab/ Log:Update the doc: one difference with CPython disappeared, but there are others more subtle ones. diff --git a/pypy/doc/cpython_differences

[pypy-commit] pypy default: Add a warning about comparing strings with ``is``.

2014-11-20 Thread arigo
Author: Armin Rigo Branch: Changeset: r74608:677120906bff Date: 2014-11-20 11:34 +0100 http://bitbucket.org/pypy/pypy/changeset/677120906bff/ Log:Add a warning about comparing strings with ``is``. diff --git a/pypy/doc/cpython_differences.rst b/pypy/doc/cpython_differences.rst --- a/pypy/do

[pypy-commit] pypy intern-not-immortal: Make intern() return non-immortal strings, like it does in CPython.

2014-11-20 Thread arigo
Author: Armin Rigo Branch: intern-not-immortal Changeset: r74609:be4cd7a1e1fb Date: 2014-11-20 12:09 +0100 http://bitbucket.org/pypy/pypy/changeset/be4cd7a1e1fb/ Log:Make intern() return non-immortal strings, like it does in CPython. diff --git a/pypy/interpreter/baseobjspace.py b/pypy/inter

[pypy-commit] pypy intern-not-immortal: Try to fix marshal's handling of interned strings

2014-11-20 Thread arigo
Author: Armin Rigo Branch: intern-not-immortal Changeset: r74610:b866d4c8dbd1 Date: 2014-11-20 13:16 +0100 http://bitbucket.org/pypy/pypy/changeset/b866d4c8dbd1/ Log:Try to fix marshal's handling of interned strings diff --git a/pypy/interpreter/baseobjspace.py b/pypy/interpreter/baseobjspac

[pypy-commit] pypy intern-not-immortal: Test and fix

2014-11-20 Thread arigo
Author: Armin Rigo Branch: intern-not-immortal Changeset: r74611:95fdb025f04d Date: 2014-11-20 13:21 +0100 http://bitbucket.org/pypy/pypy/changeset/95fdb025f04d/ Log:Test and fix diff --git a/rpython/rlib/rweakref.py b/rpython/rlib/rweakref.py --- a/rpython/rlib/rweakref.py +++ b/rpython/rli

[pypy-commit] pypy intern-not-immortal: Intern the identifier-like strings that appear in the compiled code.

2014-11-20 Thread arigo
Author: Armin Rigo Branch: intern-not-immortal Changeset: r74612:e95ebc7224cd Date: 2014-11-20 13:52 +0100 http://bitbucket.org/pypy/pypy/changeset/e95ebc7224cd/ Log:Intern the identifier-like strings that appear in the compiled code. diff --git a/pypy/interpreter/astcompiler/assemble.py b/

[pypy-commit] pypy default: Obscure one-time crash of the test: maybe the file descriptor 42 was in use?

2014-11-20 Thread arigo
Author: Armin Rigo Branch: Changeset: r74613:21763edebb42 Date: 2014-11-20 14:26 +0100 http://bitbucket.org/pypy/pypy/changeset/21763edebb42/ Log:Obscure one-time crash of the test: maybe the file descriptor 42 was in use? diff --git a/pypy/module/_file/test/test_file.py b/pypy/mod

[pypy-commit] pypy default: Merge intern-not-immortal: fix intern() to return mortal strings,

2014-11-20 Thread arigo
Author: Armin Rigo Branch: Changeset: r74615:2afdc25d04e2 Date: 2014-11-20 14:51 +0100 http://bitbucket.org/pypy/pypy/changeset/2afdc25d04e2/ Log:Merge intern-not-immortal: fix intern() to return mortal strings, and try to fix things so that the AST compiler and the unmarshaller

[pypy-commit] pypy intern-not-immortal: ready to merge

2014-11-20 Thread arigo
Author: Armin Rigo Branch: intern-not-immortal Changeset: r74614:f8b55e922637 Date: 2014-11-20 14:51 +0100 http://bitbucket.org/pypy/pypy/changeset/f8b55e922637/ Log:ready to merge ___ pypy-commit mailing list pypy-commit@python.org https://mail.py

[pypy-commit] pypy stmgc-c7: fix plot to show all threads

2014-11-20 Thread Raemi
Author: Remi Meier Branch: stmgc-c7 Changeset: r74616:71d03ab2f30b Date: 2014-11-20 16:47 +0100 http://bitbucket.org/pypy/pypy/changeset/71d03ab2f30b/ Log:fix plot to show all threads diff --git a/pypy/stm/plot_stm_log.py b/pypy/stm/plot_stm_log.py --- a/pypy/stm/plot_stm_log.py +++ b/pypy/s

[pypy-commit] pypy framestate: inline save_locals_stack() and restore_locals_stack()

2014-11-20 Thread rlamy
Author: Ronan Lamy Branch: framestate Changeset: r74617:0c9d4802f0ab Date: 2014-11-20 03:44 + http://bitbucket.org/pypy/pypy/changeset/0c9d4802f0ab/ Log:inline save_locals_stack() and restore_locals_stack() diff --git a/rpython/flowspace/flowcontext.py b/rpython/flowspace/flowcontext.py

[pypy-commit] pypy framestate: Use a simple variable-sized list for the stack

2014-11-20 Thread rlamy
Author: Ronan Lamy Branch: framestate Changeset: r74618:10aac48469bc Date: 2014-11-20 04:10 + http://bitbucket.org/pypy/pypy/changeset/10aac48469bc/ Log:Use a simple variable-sized list for the stack diff --git a/rpython/flowspace/flowcontext.py b/rpython/flowspace/flowcontext.py --- a/r

[pypy-commit] pypy framestate: Make FlowSignal interface more convenient

2014-11-20 Thread rlamy
Author: Ronan Lamy Branch: framestate Changeset: r74619:092128f86b9d Date: 2014-11-20 20:34 + http://bitbucket.org/pypy/pypy/changeset/092128f86b9d/ Log:Make FlowSignal interface more convenient diff --git a/rpython/flowspace/flowcontext.py b/rpython/flowspace/flowcontext.py --- a/rpytho

[pypy-commit] pypy default: fix some socket tests for python.org changes

2014-11-20 Thread bdkearns
Author: Brian Kearns Branch: Changeset: r74620:4c456cd88383 Date: 2014-11-20 18:46 -0500 http://bitbucket.org/pypy/pypy/changeset/4c456cd88383/ Log:fix some socket tests for python.org changes diff --git a/rpython/rlib/test/test_rsocket.py b/rpython/rlib/test/test_rsocket.py --- a/rpython/

[pypy-commit] pypy framestate: get RaiseImplicit.rebuild to behave as it should

2014-11-20 Thread rlamy
Author: Ronan Lamy Branch: framestate Changeset: r74621:e0bf1637cf8b Date: 2014-11-20 22:48 + http://bitbucket.org/pypy/pypy/changeset/e0bf1637cf8b/ Log:get RaiseImplicit.rebuild to behave as it should diff --git a/rpython/flowspace/flowcontext.py b/rpython/flowspace/flowcontext.py --- a

[pypy-commit] pypy framestate: Refactor FrameState

2014-11-20 Thread rlamy
Author: Ronan Lamy Branch: framestate Changeset: r74622:06b064a032d8 Date: 2014-11-20 23:48 + http://bitbucket.org/pypy/pypy/changeset/06b064a032d8/ Log:Refactor FrameState diff --git a/rpython/flowspace/flowcontext.py b/rpython/flowspace/flowcontext.py --- a/rpython/flowspace/flowcontex

[pypy-commit] pypy framestate: Remove unnecessary complications in framestate.py

2014-11-20 Thread rlamy
Author: Ronan Lamy Branch: framestate Changeset: r74624:5336be0ae46c Date: 2014-11-21 04:05 + http://bitbucket.org/pypy/pypy/changeset/5336be0ae46c/ Log:Remove unnecessary complications in framestate.py diff --git a/rpython/flowspace/flowcontext.py b/rpython/flowspace/flowcontext.py ---

[pypy-commit] pypy framestate: fix exception merging

2014-11-20 Thread rlamy
Author: Ronan Lamy Branch: framestate Changeset: r74623:c7bd1fd3509e Date: 2014-11-21 04:00 + http://bitbucket.org/pypy/pypy/changeset/c7bd1fd3509e/ Log:fix exception merging diff --git a/rpython/flowspace/framestate.py b/rpython/flowspace/framestate.py --- a/rpython/flowspace/framestate

[pypy-commit] pypy optresult: reinstantiate cloning

2014-11-20 Thread fijal
Author: Maciej Fijalkowski Branch: optresult Changeset: r74625:486e9a88f4d6 Date: 2014-11-19 13:15 +0200 http://bitbucket.org/pypy/pypy/changeset/486e9a88f4d6/ Log:reinstantiate cloning diff --git a/rpython/jit/metainterp/compile.py b/rpython/jit/metainterp/compile.py --- a/rpython/jit/meta

[pypy-commit] pypy optresult: clone enough to pass the first test

2014-11-20 Thread fijal
Author: Maciej Fijalkowski Branch: optresult Changeset: r74626:5bd127267e31 Date: 2014-11-19 14:45 +0200 http://bitbucket.org/pypy/pypy/changeset/5bd127267e31/ Log:clone enough to pass the first test diff --git a/rpython/jit/metainterp/compile.py b/rpython/jit/metainterp/compile.py --- a/rp

[pypy-commit] pypy default: Kill obmalloc. Shockingly everything nicely passes

2014-11-20 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r74627:7b11194ab1d4 Date: 2014-11-21 09:02 +0200 http://bitbucket.org/pypy/pypy/changeset/7b11194ab1d4/ Log:Kill obmalloc. Shockingly everything nicely passes diff --git a/rpython/translator/c/genc.py b/rpython/translator/c/genc.py --- a/rpython

[pypy-commit] pypy default: kill mentions of obmalloc here

2014-11-20 Thread fijal
Author: Maciej Fijalkowski Branch: Changeset: r74628:95b519f3bfe2 Date: 2014-11-21 09:15 +0200 http://bitbucket.org/pypy/pypy/changeset/95b519f3bfe2/ Log:kill mentions of obmalloc here diff --git a/rpython/memory/gc/incminimark.py b/rpython/memory/gc/incminimark.py --- a/rpython/memory/gc/i