Hi David,
thank you for the prompt answer. One more question, since I am sure that
people will ask me :). Does PyPy work on android? I suppose the answer is
"yes, but of course without integration with the UI", but better to check.
I'll also point that the Rasperry-Pi foundation founded part of t
Hi Anto,
On 22.05.2014, at 09:49, Antonio Cuni wrote:
>
> thank you for the prompt answer. One more question, since I am sure that
> people will ask me :). Does PyPy work on android? I suppose the answer is
> "yes, but of course without integration with the UI", but better to check.
The answ
We have an extension module which works fine with CPython but deadlocks every
time in PyPy.
The problem is induced when the C++ code in the module (having been invoked
from a Python thread) prepares to call back into Python again by calling
PyGILState_Ensure. It seems at this point we try to a
New issue 1775: imp.lock_held isn't quite right
https://bitbucket.org/pypy/pypy/issue/1775/implock_held-isnt-quite-right
eevee:
PyPy's `lock_held()` returns whether the lock is held by the current thread:
https://bitbucket.org/pypy/pypy/src/6e9376d22e0ecc83bfcdda81d0e37e695b435dd7/pypy/module/im
As far as numpy, the last few blog status posts are probably give the best
idea:
http://morepypy.blogspot.com/2014/04/numpy-on-pypy-status-update.html
http://morepypy.blogspot.com/2014/03/numpy-status-update-february.html
Somewhere in there I mention count of tests passing out of tests total --
t
New issue 1776: Creating instances of a namedtuple is inexplicably very slow
https://bitbucket.org/pypy/pypy/issue/1776/creating-instances-of-a-namedtuple-is
Alex Gaynor:
Compare:
```
$ pypy -mtimeit -s "from collections import namedtuple; pos = namedtuple('pos',
['x', 'y'])" "p = (1, 2)"
1