[pypy-commit] pypy default: Issue #2023: cpyext: in the 'Concrete Object Layer' API,

2015-04-11 Thread amauryfa
Author: Amaury Forgeot d'Arc Branch: Changeset: r76775:5580e5171f5f Date: 2015-04-11 22:05 +0200 http://bitbucket.org/pypy/pypy/changeset/5580e5171f5f/ Log:Issue #2023: cpyext: in the 'Concrete Object Layer' API, don't call methods on the object (which can be overriden), but directly

[pypy-commit] pypy object-dtype2: differentiate between _bool on ComplexType and ObjectType

2015-04-11 Thread mattip
Author: mattip Branch: object-dtype2 Changeset: r76774:2f804b4e682f Date: 2015-04-11 22:18 +0300 http://bitbucket.org/pypy/pypy/changeset/2f804b4e682f/ Log:differentiate between _bool on ComplexType and ObjectType diff --git a/pypy/module/micronumpy/types.py b/pypy/module/micronumpy/types.py

[pypy-commit] cffi cffi-1.0: Realizing C types from parsed _cffi_opcode arrays: write the basics,

2015-04-11 Thread arigo
Author: Armin Rigo Branch: cffi-1.0 Changeset: r1695:d5b493dd8a62 Date: 2015-04-11 18:25 +0200 http://bitbucket.org/cffi/cffi/changeset/d5b493dd8a62/ Log:Realizing C types from parsed _cffi_opcode arrays: write the basics, needs to be integrated with _cffi_backend.c diff --git a/new/

[pypy-commit] pypy default: Fix: there are roughly 80'000 symbols '__gcmap_*' in an asmgcc pypy, and

2015-04-11 Thread arigo
Author: Armin Rigo Branch: Changeset: r76772:2769d419e952 Date: 2015-04-11 10:39 +0200 http://bitbucket.org/pypy/pypy/changeset/2769d419e952/ Log:Fix: there are roughly 80'000 symbols '__gcmap_*' in an asmgcc pypy, and they were not declared '.hidden', which means that they were

[pypy-commit] pypy default: fix test

2015-04-11 Thread arigo
Author: Armin Rigo Branch: Changeset: r76773:60de3e60e9d5 Date: 2015-04-11 10:42 +0200 http://bitbucket.org/pypy/pypy/changeset/60de3e60e9d5/ Log:fix test diff --git a/rpython/translator/c/gcc/test/test_trackgcroot.py b/rpython/translator/c/gcc/test/test_trackgcroot.py --- a/rpython/transl

[pypy-commit] extradoc extradoc: Add the abstract for STM for EuroPython 2015

2015-04-11 Thread arigo
Author: Armin Rigo Branch: extradoc Changeset: r5525:9fd26448fe0f Date: 2015-04-11 11:31 +0200 http://bitbucket.org/pypy/extradoc/changeset/9fd26448fe0f/ Log:Add the abstract for STM for EuroPython 2015 diff --git a/talk/ep2015/stm-abstract.rst b/talk/ep2015/stm-abstract.rst new file mode 10

[pypy-commit] cffi cffi-1.0: Typenames

2015-04-11 Thread arigo
Author: Armin Rigo Branch: cffi-1.0 Changeset: r1694:54d0281c9072 Date: 2015-04-11 09:39 +0200 http://bitbucket.org/cffi/cffi/changeset/54d0281c9072/ Log:Typenames diff --git a/new/parse_c_type.c b/new/parse_c_type.c --- a/new/parse_c_type.c +++ b/new/parse_c_type.c @@ -432,6 +432,25 @@

[pypy-commit] cffi cffi-1.0: Copy some tests from creflect

2015-04-11 Thread arigo
Author: Armin Rigo Branch: cffi-1.0 Changeset: r1693:3ac82266ea94 Date: 2015-04-11 09:32 +0200 http://bitbucket.org/cffi/cffi/changeset/3ac82266ea94/ Log:Copy some tests from creflect diff --git a/new/parse_c_type.c b/new/parse_c_type.c --- a/new/parse_c_type.c +++ b/new/parse_c_type.c @@ -1

[pypy-commit] cffi cffi-1.0: Structs and unions

2015-04-11 Thread arigo
Author: Armin Rigo Branch: cffi-1.0 Changeset: r1692:3162ab4fa3b8 Date: 2015-04-11 09:27 +0200 http://bitbucket.org/cffi/cffi/changeset/3162ab4fa3b8/ Log:Structs and unions diff --git a/new/parse_c_type.c b/new/parse_c_type.c --- a/new/parse_c_type.c +++ b/new/parse_c_type.c @@ -1,4 +1,5 @@