[pypy-commit] pypy cpyext-bootstrap: A branch to simplify the bootstrapping, to reduce the amount of changes

2016-01-27 Thread arigo
Author: Armin Rigo Branch: cpyext-bootstrap Changeset: r81968:30bbc81f0b06 Date: 2016-01-27 13:42 +0100 http://bitbucket.org/pypy/pypy/changeset/30bbc81f0b06/ Log:A branch to simplify the bootstrapping, to reduce the amount of changes in cpyext-gc-support-2 __

[pypy-commit] pypy cpyext-bootstrap: Kill kill kill the logic in init_typeobject(). It was anyway very

2016-01-27 Thread arigo
Author: Armin Rigo Branch: cpyext-bootstrap Changeset: r81969:3cd5ace97b49 Date: 2016-01-27 13:43 +0100 http://bitbucket.org/pypy/pypy/changeset/3cd5ace97b49/ Log:Kill kill kill the logic in init_typeobject(). It was anyway very strange, because it would create "heap" type objects, in

[pypy-commit] pypy default: Add "-m ensurepip"

2016-01-27 Thread arigo
Author: Armin Rigo Branch: Changeset: r81970:4974d1173ac2 Date: 2016-01-27 14:26 +0100 http://bitbucket.org/pypy/pypy/changeset/4974d1173ac2/ Log:Add "-m ensurepip" diff --git a/pypy/doc/faq.rst b/pypy/doc/faq.rst --- a/pypy/doc/faq.rst +++ b/pypy/doc/faq.rst @@ -54,7 +54,8 @@ It is quite

[pypy-commit] pypy cpyext-bootstrap: pfff, took me a while to figure out that memory corruption was going on here:

2016-01-27 Thread arigo
Author: Armin Rigo Branch: cpyext-bootstrap Changeset: r81971:ed11e491b6c2 Date: 2016-01-27 14:50 +0100 http://bitbucket.org/pypy/pypy/changeset/ed11e491b6c2/ Log:pfff, took me a while to figure out that memory corruption was going on here: the globals False/True would be initialized

[pypy-commit] pypy cpyext-bootstrap: This test checks a condition which is actually not true, but which

2016-01-27 Thread arigo
Author: Armin Rigo Branch: cpyext-bootstrap Changeset: r81972:dd3a1abe4374 Date: 2016-01-27 16:35 +0100 http://bitbucket.org/pypy/pypy/changeset/dd3a1abe4374/ Log:This test checks a condition which is actually not true, but which happened to be true due to the two versions of some PyT

[pypy-commit] pypy cpyext-bootstrap: Attempt to fix translation, getting segfault while translating now

2016-01-27 Thread arigo
Author: Armin Rigo Branch: cpyext-bootstrap Changeset: r81973:036fa7ebc766 Date: 2016-01-27 17:03 +0100 http://bitbucket.org/pypy/pypy/changeset/036fa7ebc766/ Log:Attempt to fix translation, getting segfault while translating now diff --git a/pypy/module/cpyext/api.py b/pypy/module/cpyext/ap

[pypy-commit] pypy cpyext-bootstrap: Some translation fixes

2016-01-27 Thread arigo
Author: Armin Rigo Branch: cpyext-bootstrap Changeset: r81974:a11965258086 Date: 2016-01-27 17:39 +0100 http://bitbucket.org/pypy/pypy/changeset/a11965258086/ Log:Some translation fixes diff --git a/pypy/module/cpyext/api.py b/pypy/module/cpyext/api.py --- a/pypy/module/cpyext/api.py +++ b/p

[pypy-commit] pypy default: cpyext implies micronumpy, otherwise we get never-initialized ndarray subclasses

2016-01-27 Thread arigo
Author: Armin Rigo Branch: Changeset: r81975:ec6457a2d845 Date: 2016-01-27 18:05 +0100 http://bitbucket.org/pypy/pypy/changeset/ec6457a2d845/ Log:cpyext implies micronumpy, otherwise we get never-initialized ndarray subclasses diff --git a/pypy/config/pypyoption.py b/pypy/config/pyp

[pypy-commit] pypy default: hg merge cpyext-bootstrap

2016-01-27 Thread arigo
Author: Armin Rigo Branch: Changeset: r81977:7d1a37bf041c Date: 2016-01-27 19:02 +0100 http://bitbucket.org/pypy/pypy/changeset/7d1a37bf041c/ Log:hg merge cpyext-bootstrap simplify the bootstrap procedure, which was a bit manual and slightly buggy (e.g. untranslated, it made

[pypy-commit] pypy cpyext-bootstrap: Seems to work, merging

2016-01-27 Thread arigo
Author: Armin Rigo Branch: cpyext-bootstrap Changeset: r81976:0fac859d23a0 Date: 2016-01-27 18:58 +0100 http://bitbucket.org/pypy/pypy/changeset/0fac859d23a0/ Log:Seems to work, merging ___ pypy-commit mailing list pypy-commit@python.org https://ma

[pypy-commit] pypy cpyext-gc-support-2: hg merge default

2016-01-27 Thread arigo
Author: Armin Rigo Branch: cpyext-gc-support-2 Changeset: r81979:1fc97a564c99 Date: 2016-01-27 19:12 +0100 http://bitbucket.org/pypy/pypy/changeset/1fc97a564c99/ Log:hg merge default diff too long, truncating to 2000 out of 4461 lines diff --git a/pypy/config/pypyoption.py b/pypy/config/pyp

[pypy-commit] pypy default: ignore branch

2016-01-27 Thread arigo
Author: Armin Rigo Branch: Changeset: r81978:5edae6a9f5e3 Date: 2016-01-27 19:10 +0100 http://bitbucket.org/pypy/pypy/changeset/5edae6a9f5e3/ Log:ignore branch diff --git a/pypy/doc/whatsnew-head.rst b/pypy/doc/whatsnew-head.rst --- a/pypy/doc/whatsnew-head.rst +++ b/pypy/doc/whatsnew-head.

[pypy-commit] pypy cpyext-gc-support-2: fix

2016-01-27 Thread arigo
Author: Armin Rigo Branch: cpyext-gc-support-2 Changeset: r81980:4f7fc4ae3711 Date: 2016-01-27 19:14 +0100 http://bitbucket.org/pypy/pypy/changeset/4f7fc4ae3711/ Log:fix diff --git a/pypy/module/cpyext/api.py b/pypy/module/cpyext/api.py --- a/pypy/module/cpyext/api.py +++ b/pypy/module/cpyex

[pypy-commit] pypy cpyext-gc-support-2: yay, test_api passes

2016-01-27 Thread arigo
Author: Armin Rigo Branch: cpyext-gc-support-2 Changeset: r81981:a3c663eba7c9 Date: 2016-01-27 19:21 +0100 http://bitbucket.org/pypy/pypy/changeset/a3c663eba7c9/ Log:yay, test_api passes diff --git a/pypy/module/cpyext/state.py b/pypy/module/cpyext/state.py --- a/pypy/module/cpyext/state.py

[pypy-commit] pypy default: Document branch 'exctrans'

2016-01-27 Thread rlamy
Author: Ronan Lamy Branch: Changeset: r81982:a27b8ecd898e Date: 2016-01-27 18:23 + http://bitbucket.org/pypy/pypy/changeset/a27b8ecd898e/ Log:Document branch 'exctrans' diff --git a/pypy/doc/whatsnew-head.rst b/pypy/doc/whatsnew-head.rst --- a/pypy/doc/whatsnew-head.rst +++ b/pypy/doc/w

[pypy-commit] pypy.org extradoc: Mention the "@pypy-4.0.1" part of the url

2016-01-27 Thread arigo
Author: Armin Rigo Branch: extradoc Changeset: r697:848d8a627c0e Date: 2016-01-27 20:16 +0100 http://bitbucket.org/pypy/pypy.org/changeset/848d8a627c0e/ Log:Mention the "@pypy-4.0.1" part of the url diff --git a/download.html b/download.html --- a/download.html +++ b/download.html @@ -214,7

[pypy-commit] pypy s390x-backend: added ztranslation call assembler test and some more (hurray, one of them fails and this might be the bug I'm searching for)

2016-01-27 Thread plan_rich
Author: Richard Plangger Branch: s390x-backend Changeset: r81983:228ce776f7f6 Date: 2016-01-27 20:46 +0100 http://bitbucket.org/pypy/pypy/changeset/228ce776f7f6/ Log:added ztranslation call assembler test and some more (hurray, one of them fails and this might be the bug I'm searching

[pypy-commit] pypy cpyext-gc-support-2: Add a comment (thanks ronan)

2016-01-27 Thread arigo
Author: Armin Rigo Branch: cpyext-gc-support-2 Changeset: r81984:97395b8025f0 Date: 2016-01-27 20:48 +0100 http://bitbucket.org/pypy/pypy/changeset/97395b8025f0/ Log:Add a comment (thanks ronan) diff --git a/rpython/rlib/rawrefcount.py b/rpython/rlib/rawrefcount.py --- a/rpython/rlib/rawrefc

[pypy-commit] pypy default: remove all traces of micronumpy from cpyext if --withoutmod-micronumpy option used

2016-01-27 Thread mattip
Author: mattip Branch: Changeset: r81985:3ec0e1e24a2e Date: 2016-01-28 00:04 +0200 http://bitbucket.org/pypy/pypy/changeset/3ec0e1e24a2e/ Log:remove all traces of micronumpy from cpyext if --withoutmod- micronumpy option used also back out ec6457a2d845 diff --git a/pypy/con

[pypy-commit] pypy py3.3: Redo 88aafcb7c318: hg merge py3k (+ fixes)

2016-01-27 Thread mjacob
Author: Manuel Jacob Branch: py3.3 Changeset: r81987:4fea3e2ca354 Date: 2016-01-27 21:14 +0100 http://bitbucket.org/pypy/pypy/changeset/4fea3e2ca354/ Log:Redo 88aafcb7c318: hg merge py3k (+ fixes) That merge (88aafcb7c318) went wrong because someone merged from the default br

[pypy-commit] pypy py3.3: hg merge 03591a1499c8

2016-01-27 Thread mjacob
Author: Manuel Jacob Branch: py3.3 Changeset: r81986:edefd168b2b3 Date: 2016-01-27 19:52 +0100 http://bitbucket.org/pypy/pypy/changeset/edefd168b2b3/ Log:hg merge 03591a1499c8 This merges marky1991's changes before he merged the problematic merge 88aafcb7c318. diff --git a/l