Re: [pypy-dev] Tkinter ?

2017-09-30 Thread Stuart Axon via pypy-dev
Here is backend_wx.pyhttps://pastebin.com/0bHs4rY5 from~/.virtualenvs/pypy-nightly-trunk/site-packages/matplotlib-2.1.0rc1+112.g17ec41612.dirty-py2.7-linux-x86_64.egg/matplotlib/backends/backend_wx.py Around line 1818 there is a mix of tabs and spaces, which doesn't seem right. Also  "class

Re: [pypy-dev] Tkinter ?

2017-09-30 Thread Matti Picus
On 30/09/17 03:32, Stuart Axon via pypy-dev wrote: Cheers for the suggestons on TKinter and matplotlib - mplcairo is out, since it uses pycairo (as opposed to cairocffi). 

Re: [pypy-dev] Tkinter ?

2017-09-29 Thread Stuart Axon via pypy-dev
Cheers for the suggestons on TKinter and matplotlib - mplcairo is out, since it uses pycairo (as opposed to cairocffi).  Wx-CFFI looks interesting, however all the matplotlib tutorials give me errors like the one below, so that is probably out as well for now - I'll definitely keep an eye on

Re: [pypy-dev] Tkinter ?

2017-09-16 Thread Nathaniel Smith
On Sep 16, 2017 4:06 AM, "matti picus" wrote: On Fri, 15 Sep 2017 at 7:51 pm, Armin Rigo wrote: > Hi Stuart, > > On 13 September 2017 at 13:53, Stuart Axon via pypy-dev > wrote: > >Is TkInter pypy still a thing ? > > Yes,

Re: [pypy-dev] Tkinter ?

2017-09-16 Thread matti picus
On Fri, 15 Sep 2017 at 7:51 pm, Armin Rigo wrote: > Hi Stuart, > > On 13 September 2017 at 13:53, Stuart Axon via pypy-dev > wrote: > >Is TkInter pypy still a thing ? > > Yes, ``import Tkinter`` works as expected for me. Maybe it doesn't > work

Re: [pypy-dev] Tkinter ?

2017-09-15 Thread Armin Rigo
Hi Stuart, On 13 September 2017 at 13:53, Stuart Axon via pypy-dev wrote: >Is TkInter pypy still a thing ? Yes, ``import Tkinter`` works as expected for me. Maybe it doesn't work *in matplotlib,* which I'm not sure how to test. Others may know more about this. A

[pypy-dev] Tkinter ?

2017-09-13 Thread Stuart Axon via pypy-dev
Hi all,   Is TkInter pypy still a thing ?   I was trying some demos from aubio from pypy but they didn't work [1].My first thought was to try and install tkinter-pypy but that doens't seem to exist any more. I'm testing with pypy-nightly trunk on Ubuntu 17.04 64 bit. [1]$ python

Re: [pypy-dev] tkinter tests broken

2015-06-24 Thread Amaury Forgeot d'Arc
Thanks Armin, 2015-06-23 9:48 GMT+02:00 Armin Rigo ar...@tunes.org: Hi Amaury, On 21 June 2015 at 14:11, Amaury Forgeot d'Arc amaur...@gmail.com wrote: 2015-06-21 12:33 GMT+02:00 Armin Rigo ar...@tunes.org: Can you fix the situation? Thanks! Should be fixed with 6453697f3a30.

Re: [pypy-dev] tkinter tests broken

2015-06-21 Thread Amaury Forgeot d'Arc
Hi Armin, 2015-06-21 12:33 GMT+02:00 Armin Rigo ar...@tunes.org: Hi Amaury, In fd331e4bf733 you did an untested change to the tkinter library; as it turns out, the CPython tests find problems:

[pypy-dev] tkinter tests broken

2015-06-21 Thread Armin Rigo
Hi Amaury, In fd331e4bf733 you did an untested change to the tkinter library; as it turns out, the CPython tests find problems: http://buildbot.pypy.org/summary/longrepr?testname=unmodifiedbuilder=pypy-c-jit-linux-x86-32build=2727mod=lib-python.2.7.test.test_tcl Can you fix the situation?

Re: [pypy-dev] Tkinter-pypy not building on windows

2012-01-18 Thread Arnaud F
Still no luck. I made sure that i am using the correct version of tcl/tk and tested the compilation of tkinter with python27 and it worked. With pypy, i still have to define WITH_THREAD (it's defined in pyconfig.h for python27 but not in pypy-1.7); I also had to modify the setup.py since i used

Re: [pypy-dev] Tkinter-pypy not building on windows

2012-01-18 Thread Amaury Forgeot d'Arc
2012/1/18 Arnaud F pachalm...@gmail.com Still no luck. I made sure that i am using the correct version of tcl/tk and tested the compilation of tkinter with python27 and it worked. With pypy, i still have to define WITH_THREAD (it's defined in pyconfig.h for python27 but not in pypy-1.7); I

Re: [pypy-dev] Tkinter-pypy not building on windows

2012-01-18 Thread Arnaud F
The reference to X11.lib comes from the original setup.py. The reference to python27.lib seems to come from distutils (build_ext.py, in the get_libraries method) I didn't find any .lib file in my pypy installation (the standard binaries version 1.7 32bits for windows), just some dlls. Do I need to

Re: [pypy-dev] Tkinter-pypy not building on windows

2012-01-17 Thread Amaury Forgeot d'Arc
Hi, 2012/1/17 Arnaud F pachalm...@gmail.com When trying to build tkinter from source, i get the following errors : [...] src/_tkinter.c(3133) : error C2065: 'tcl_lock' : undeclared identifier Which version of tcl are you using? Are you sure it was compiled with threads? There is a