Author: Richard Plangger
Branch: zarch-simd-support
Changeset: r87105:4802a50159bf
Date: 2016-09-14 12:06 +0200
http://bitbucket.org/pypy/pypy/changeset/4802a50159bf/
Log:load, store, add, subtract vector versions
diff --git a/rpython/jit/backend/zarch/detect_feature.py
b/rpython/jit/backen
Author: Richard Plangger
Branch: zarch-simd-support
Changeset: r87106:155d0af20ad7
Date: 2016-09-14 12:54 +0200
http://bitbucket.org/pypy/pypy/changeset/155d0af20ad7/
Log:more vector ops, add, subtract, logic or, and, xor, float mul, float
div
diff --git a/rpython/jit/backend/zarch/i
Author: Richard Plangger
Branch: zarch-simd-support
Changeset: r87107:4c3e946b5c05
Date: 2016-09-14 16:19 +0200
http://bitbucket.org/pypy/pypy/changeset/4c3e946b5c05/
Log:more vector ops, int->float, comparison float
diff --git a/rpython/jit/backend/zarch/assembler.py
b/rpython/jit/backend/
Author: Armin Rigo
Branch: py3.5
Changeset: r87108:0419bc15bcf5
Date: 2016-09-14 17:26 +0200
http://bitbucket.org/pypy/pypy/changeset/0419bc15bcf5/
Log:Pff, took me too long to figure out this was causing an obscure
error at start-up of pypy-c
diff --git a/pypy/module/sys/app.py b/py
Author: Armin Rigo
Branch: py3.5
Changeset: r87109:b093c8afa8ce
Date: 2016-09-14 17:45 +0200
http://bitbucket.org/pypy/pypy/changeset/b093c8afa8ce/
Log:Skip the micronumpy tests on py3.5. Micronumpy is anyway not
compiled into a default pypy-c in this branch.
diff --git a/pypy/module
Author: Armin Rigo
Branch: py3.5
Changeset: r87110:d72441d11e7e
Date: 2016-09-14 16:56 +0100
http://bitbucket.org/pypy/pypy/changeset/d72441d11e7e/
Log:Write down a message to avoid being hit by 0419bc15bcf5 again
diff --git a/pypy/interpreter/app_main.py b/pypy/interpreter/app_main.py
--- a
Author: Armin Rigo
Branch: py3.5-corowrapper
Changeset: r87112:4f2a6936d18e
Date: 2016-09-14 18:26 +0200
http://bitbucket.org/pypy/pypy/changeset/4f2a6936d18e/
Log:First test: space.next() must not accept coroutines (and not by
*name* anyway!)
diff --git a/pypy/interpreter/test/test_
Author: Armin Rigo
Branch: py3.5-corowrapper
Changeset: r87111:0df496486e9c
Date: 2016-09-14 18:25 +0200
http://bitbucket.org/pypy/pypy/changeset/0df496486e9c/
Log:A branch to add the coroutine_wrapper type from CPython and review
our coroutines
__
Author: Armin Rigo
Branch: py3.5-corowrapper
Changeset: r87113:a1f0e3bcdc6f
Date: 2016-09-14 19:35 +0200
http://bitbucket.org/pypy/pypy/changeset/a1f0e3bcdc6f/
Log:in-progress
diff --git a/pypy/interpreter/generator.py b/pypy/interpreter/generator.py
--- a/pypy/interpreter/generator.py
+++ b
Author: Matti Picus
Branch: buffer-interface2
Changeset: r87114:0497d086d9c5
Date: 2016-09-14 20:24 +0300
http://bitbucket.org/pypy/pypy/changeset/0497d086d9c5/
Log:more tests, fixes for buffer interface on app-level classes
diff --git a/pypy/module/cpyext/test/test_abstract.py
b/pypy/modul
Author: Armin Rigo
Branch: py3.5-corowrapper
Changeset: r87115:209720711d97
Date: 2016-09-14 20:11 +0200
http://bitbucket.org/pypy/pypy/changeset/209720711d97/
Log:CO_FUTURE_GENERATOR_STOP, not tested so far
diff --git a/pypy/interpreter/astcompiler/consts.py
b/pypy/interpreter/astcompiler/
Author: Armin Rigo
Branch: extradoc
Changeset: r798:78fcbb44c7d2
Date: 2016-09-14 20:13 +0200
http://bitbucket.org/pypy/pypy.org/changeset/78fcbb44c7d2/
Log:update the values
diff --git a/don1.html b/don1.html
--- a/don1.html
+++ b/don1.html
@@ -15,7 +15,7 @@
- $65104 of $105000 (
Author: Matti Picus
Branch: buffer-interface2
Changeset: r87116:1079c793b219
Date: 2016-09-14 22:12 +0300
http://bitbucket.org/pypy/pypy/changeset/1079c793b219/
Log:add test that passes -A fails untranslated, bf_get* slots are NULL
in subclass
diff --git a/pypy/module/cpyext/test/arr
Author: Matti Picus
Branch: buffer-interface2
Changeset: r87117:e5be2ebc1e87
Date: 2016-09-15 06:56 +0300
http://bitbucket.org/pypy/pypy/changeset/e5be2ebc1e87/
Log:fill in tp_as_buffer.* functions that have no dunder slot
diff --git a/pypy/module/cpyext/typeobject.py b/pypy/module/cpyext/ty
Author: Matti Picus
Branch: buffer-interface2
Changeset: r87118:5b04c1bb7084
Date: 2016-09-15 07:36 +0300
http://bitbucket.org/pypy/pypy/changeset/5b04c1bb7084/
Log:failing test
is the decode (which is not the core of the test) valid on other
platforms?
diff --git a/pypy/mod
Author: Armin Rigo
Branch:
Changeset: r2770:5fc2d2cf2f5d
Date: 2016-09-15 08:53 +0200
http://bitbucket.org/cffi/cffi/changeset/5fc2d2cf2f5d/
Log:Document the new warning
diff --git a/c/test_c.py b/c/test_c.py
--- a/c/test_c.py
+++ b/c/test_c.py
@@ -3679,6 +3679,8 @@
def test_char_pointer
Author: Armin Rigo
Branch:
Changeset: r2769:6abfa4fb79bc
Date: 2016-09-15 08:42 +0200
http://bitbucket.org/cffi/cffi/changeset/6abfa4fb79bc/
Log:bump version number to 1.8.3
diff --git a/c/_cffi_backend.c b/c/_cffi_backend.c
--- a/c/_cffi_backend.c
+++ b/c/_cffi_backend.c
@@ -2,7 +2,7 @@
#
Author: Armin Rigo
Branch:
Changeset: r2768:7c0b1fadb4da
Date: 2016-09-15 08:39 +0200
http://bitbucket.org/cffi/cffi/changeset/7c0b1fadb4da/
Log:Warn when implicitly casting between "char *" and a different
pointer type, like C does (there is no special-case of "char *" in
C)
18 matches
Mail list logo