Re: [pypy-dev] pypy blocked at RPyGilAcquire ()

2015-06-25 Thread Eric Driggers
Ran into a similar concept concern while doing some proof of concept work for my company. The approach that looked the most promising/easiest for a clean pypy state (both rpython internal and python globals) was to embed the sandbox controller and have it call out/create a new sandbox for each unit

Re: [pypy-dev] pypy 2.2.1 performance on Raspian

2015-07-01 Thread Eric Driggers
Unless I am missunderstanding, isn't pypy 2.2.1 rather old? Have you tried a more up-to-date version first? (I seem to see current stable is 2.6.0 and nightly is 2.7.0-alpha0) My memory is that between 2.3 and 2.4 there was some armhf work done, and that between 2.3 and 2.5 a whole pile of stuff wa

Re: [pypy-dev] pypy callback function pointer become invalid

2015-08-16 Thread Eric Driggers
Agreed, have been doing basically that for some internal code, as the docs kind of hint: http://pypy.readthedocs.org/en/latest/embedding.html#more-complete-example Basically call the pypy_execute_source_ptr() once, passing in a API struct to fill out for low-level call-backs. (And passing in at t

[pypy-dev] State of GUI toolkits with PyPy?

2015-09-17 Thread Eric Driggers
Looking at rewriting a number of my older python2 scripts to python3 and was hoping in the mean time to also make all of them play nice with PyPy where possible. However a number of them use pyqt when I needed a GUI. From what I can find QT still does not play nice with PyPy yet, however are there

Re: [pypy-dev] State of GUI toolkits with PyPy?

2015-09-19 Thread Eric Driggers
on, but I don't think anyone >>> got pyqt running on PyPy. Cffi is one option with pymetabiosis being >>> the other one worth considering. Also I have a bit no clue how much >>> CPython C extensions your bindings/qt uses, but we have an emulation >>> layer f

Re: [pypy-dev] State of GUI toolkits with PyPy?

2015-09-20 Thread Eric Driggers
For the compatibility wiki, if nothing major changes this week I feel fine doing a large pass through it to try and update it. So long as you don't mind me in the meanwhile on IRC asking silly questions about some of them. I long ago found it to be a useful resource, and it still places high on sea