Jorge Scandaliaris writes:
>
> Hi,
> I just mentioned this problem with Qt4Agg and python 3.4 in another thread
> [1], but I decided to post it on a thread of its own, as I suspect it might
> be a bug in the Qt4Agg backend.
>
> I get a NameError exception (see backtrace below) when trying to us
On 6/5/2014 15:45, "V. Armando Solé" wrote:
...
>> You would use 'six' - https://pypi.python.org/pypi/six it is used by
>> many packages including wxPython.
>>
>> import six
>>
>> if six.PY3:
>> key = chr(event_key)
>>
>> else:
>> key = unichr(event_key)
>>
> Just for info.
>
> I had neve
On 05/06/2014 15:24, Werner wrote:
> On 6/5/2014 15:10, Jorge Scandaliaris wrote:
>> Jorge Scandaliaris writes:
>>
>>> Hi,
>>> I just mentioned this problem with Qt4Agg and python 3.4 in another thread
>>> [1], but I decided to post it on a thread of its own, as I suspect it might
>>> be a bug in
On 6/5/2014 15:10, Jorge Scandaliaris wrote:
> Jorge Scandaliaris writes:
>
>> Hi,
>> I just mentioned this problem with Qt4Agg and python 3.4 in another thread
>> [1], but I decided to post it on a thread of its own, as I suspect it might
>> be a bug in the Qt4Agg backend.
>>
>> I get a NameError
Jorge Scandaliaris writes:
>
> Hi,
> I just mentioned this problem with Qt4Agg and python 3.4 in another thread
> [1], but I decided to post it on a thread of its own, as I suspect it might
> be a bug in the Qt4Agg backend.
>
> I get a NameError exception (see backtrace below) when trying to us
Werner writes:
<...>
> Some time ago I did a bit of work on the wx backend to work with
> wxPython Phoenix.
>
> https://github.com/matplotlib/matplotlib/pull/2803
>
> I haven't had time to look at the last few comments made on that PR.
>
> Just the other day someone contacted me off list and
Hi,
I just mentioned this problem with Qt4Agg and python 3.4 in another thread
[1], but I decided to post it on a thread of its own, as I suspect it might
be a bug in the Qt4Agg backend.
I get a NameError exception (see backtrace below) when trying to use key
events in matplotlib (master branch re
Hi Jorge,
Oops, sorry for first sending it directly to your mail.
Some time ago I did a bit of work on the wx backend to work with
wxPython Phoenix.
https://github.com/matplotlib/matplotlib/pull/2803
I haven't had time to look at the last few comments made on that PR.
Just the other day someo
On 05/06/2014 07:21, Jorge Scandaliaris wrote:
> Hi,
> After a while away from matplotlib I am back working on some old code. I
> decided to switch to python 3 (bad idea?) and I am having problems with
> backends. I used to use GTKAgg, it worked ok, but it doesn't seem to work
> with python 3?
> 1-