Re: How to decide (and know) which Python GTK version to use?

2018-07-31 Thread Chris Green
Michael Torrie wrote: > On 07/30/2018 11:04 AM, Akkana Peck wrote: > > Yes, this is the future, since it lets you use both GTK3 and Python3. > > Unfortunately the automatically-generated bindings, while fast and > complete, are not quite as pythonic as the old PyGTK bindings were. The >

Re: How to decide (and know) which Python GTK version to use?

2018-07-31 Thread Chris Green
Liste guru wrote: > Il 30/07/2018 19:31, Chris Green ha scritto: > > > OK, thanks, where is its home and full API documentation etc.? > > -- Chris GreenĀ·-- https://mail.python.org/mailman/listinfo/python-list > > On the first page of the official docs, >

Re: How to decide (and know) which Python GTK version to use?

2018-07-30 Thread Michael Torrie
On 07/30/2018 11:04 AM, Akkana Peck wrote: > Yes, this is the future, since it lets you use both GTK3 and Python3. Unfortunately the automatically-generated bindings, while fast and complete, are not quite as pythonic as the old PyGTK bindings were. The abstraction layer pygobject provides leaks

Re: How to decide (and know) which Python GTK version to use?

2018-07-30 Thread Liste guru
Il 30/07/2018 19:31, Chris Green ha scritto: OK, thanks, where is its home and full API documentation etc.? -- Chris GreenĀ·-- https://mail.python.org/mailman/listinfo/python-list On the first page of the official docs, http://pygobject.readthedocs.io/en/latest/, there are the links to the

Re: How to decide (and know) which Python GTK version to use?

2018-07-30 Thread Chris Green
Akkana Peck wrote: > Chris Green writes: > > I wrote a Python GUI program a little while ago that uses Python GTK > > with:- > > > > import gtk > > > > I *think* this is probably GTK 2, or something. I can't find the > > proper documentation for this. Is it old/obsolescent? > > Yes, it's

Re: How to decide (and know) which Python GTK version to use?

2018-07-30 Thread Akkana Peck
Chris Green writes: > I wrote a Python GUI program a little while ago that uses Python GTK > with:- > > import gtk > > I *think* this is probably GTK 2, or something. I can't find the > proper documentation for this. Is it old/obsolescent? Yes, it's obsolete, and AFAIK it only works with

Re: How to decide (and know) which Python GTK version to use?

2018-07-30 Thread Chris Green
Chris Green wrote: > I want to decide which is the 'best' Python GTK to use on my Linux > (xubuntu) systems. There seem to be quite a few versions of Python > GTK bindings out there and I'm confused! > > I wrote a Python GUI program a little while ago that uses Python GTK > with:- > >

How to decide (and know) which Python GTK version to use?

2018-07-30 Thread Chris Green
I want to decide which is the 'best' Python GTK to use on my Linux (xubuntu) systems. There seem to be quite a few versions of Python GTK bindings out there and I'm confused! I wrote a Python GUI program a little while ago that uses Python GTK with:- import gtk I *think* this is probably