Re: [E-devel] python-elementary RFC: Using python properties instead of duplicating them with the get/set functions

2012-05-30 Thread Kai Huuhko
2012/5/30 Davide Andreoli d...@gurumeditation.it: 2012/5/29 Kai Huuhko kai.huu...@gmail.com: Currently the python bindings have get/set functions as in the C api, in addition to this it has object properties which have their functionality implemented by simply calling those functions, such as

Re: [E-devel] python-elementary RFC: Using python properties instead of duplicating them with the get/set functions

2012-05-30 Thread Rafael Antognolli
On Wed, May 30, 2012 at 10:33 AM, Kai Huuhko kai.huu...@gmail.com wrote: 2012/5/30 Davide Andreoli d...@gurumeditation.it: 2012/5/29 Kai Huuhko kai.huu...@gmail.com: Currently the python bindings have get/set functions as in the C api, in addition to this it has object properties which have

Re: [E-devel] python-elementary RFC: Using python properties instead of duplicating them with the get/set functions

2012-05-30 Thread Davide Andreoli
2012/5/30 Kai Huuhko kai.huu...@gmail.com: 2012/5/30 Davide Andreoli d...@gurumeditation.it: 2012/5/29 Kai Huuhko kai.huu...@gmail.com: Currently the python bindings have get/set functions as in the C api, in addition to this it has object properties which have their functionality implemented

Re: [E-devel] python-elementary RFC: Using python properties instead of duplicating them with the get/set functions

2012-05-30 Thread Kai Huuhko
2012/5/30 Rafael Antognolli antogno...@profusion.mobi: On Wed, May 30, 2012 at 10:33 AM, Kai Huuhko kai.huu...@gmail.com wrote: 2012/5/30 Davide Andreoli d...@gurumeditation.it: 2012/5/29 Kai Huuhko kai.huu...@gmail.com: Currently the python bindings have get/set functions as in the C api, in

Re: [E-devel] python-elementary RFC: Using python properties instead of duplicating them with the get/set functions

2012-05-30 Thread Gustavo Sverzut Barbieri
On Wednesday, May 30, 2012, Davide Andreoli wrote: 2012/5/30 Kai Huuhko kai.huu...@gmail.com javascript:;: 2012/5/30 Davide Andreoli d...@gurumeditation.it javascript:;: 2012/5/29 Kai Huuhko kai.huu...@gmail.com javascript:;: Currently the python bindings have get/set functions as in the C

Re: [E-devel] python-elementary RFC: Using python properties instead of duplicating them with the get/set functions

2012-05-30 Thread Kai Huuhko
2012/5/30 Gustavo Sverzut Barbieri barbi...@profusion.mobi: On Wednesday, May 30, 2012, Davide Andreoli wrote: 2012/5/30 Kai Huuhko kai.huu...@gmail.com javascript:;: 2012/5/30 Davide Andreoli d...@gurumeditation.it javascript:;: 2012/5/29 Kai Huuhko kai.huu...@gmail.com javascript:;:

Re: [E-devel] python-elementary RFC: Using python properties instead of duplicating them with the get/set functions

2012-05-30 Thread Davide Andreoli
2012/5/30 Kai Huuhko kai.huu...@gmail.com: 2012/5/30 Gustavo Sverzut Barbieri barbi...@profusion.mobi: On Wednesday, May 30, 2012, Davide Andreoli wrote: 2012/5/30 Kai Huuhko kai.huu...@gmail.com javascript:;: 2012/5/30 Davide Andreoli d...@gurumeditation.it javascript:;: 2012/5/29 Kai

Re: [E-devel] python-elementary RFC: Using python properties instead of duplicating them with the get/set functions

2012-05-30 Thread Kai Huuhko
2012/5/30 Davide Andreoli d...@gurumeditation.it: 2012/5/30 Kai Huuhko kai.huu...@gmail.com: 2012/5/30 Gustavo Sverzut Barbieri barbi...@profusion.mobi: On Wednesday, May 30, 2012, Davide Andreoli wrote: 2012/5/30 Kai Huuhko kai.huu...@gmail.com javascript:;: 2012/5/30 Davide Andreoli

Re: [E-devel] python-elementary RFC: Using python properties instead of duplicating them with the get/set functions

2012-05-30 Thread Rafael Antognolli
On Wed, May 30, 2012 at 4:53 PM, Kai Huuhko kai.huu...@gmail.com wrote: 2012/5/30 Davide Andreoli d...@gurumeditation.it: 2012/5/30 Kai Huuhko kai.huu...@gmail.com: 2012/5/30 Gustavo Sverzut Barbieri barbi...@profusion.mobi: On Wednesday, May 30, 2012, Davide Andreoli wrote: 2012/5/30 Kai

Re: [E-devel] python-elementary RFC: Using python properties instead of duplicating them with the get/set functions

2012-05-30 Thread Kai Huuhko
2012/5/30 Rafael Antognolli antogno...@profusion.mobi: On Wed, May 30, 2012 at 4:53 PM, Kai Huuhko kai.huu...@gmail.com wrote: 2012/5/30 Davide Andreoli d...@gurumeditation.it: 2012/5/30 Kai Huuhko kai.huu...@gmail.com: 2012/5/30 Gustavo Sverzut Barbieri barbi...@profusion.mobi: On Wednesday,

Re: [E-devel] python-elementary RFC: Using python properties instead of duplicating them with the get/set functions

2012-05-29 Thread Gustavo Lima Chaves
* Kai Huuhko kai.huu...@gmail.com [2012-05-29 23:33:19 +0300]: Currently the python bindings have get/set functions as in the C api, in addition to this it has object properties which have their functionality implemented by simply calling those functions, such as in the below example: def

Re: [E-devel] python-elementary RFC: Using python properties instead of duplicating them with the get/set functions

2012-05-29 Thread Boris Faure
On Tue, May 29, 2012 at 10:40 PM, Gustavo Lima Chaves gl...@profusion.mobi wrote: * Kai Huuhko kai.huu...@gmail.com [2012-05-29 23:33:19 +0300]: Currently the python bindings have get/set functions as in the C api, in addition to this it has object properties which have their functionality

Re: [E-devel] python-elementary RFC: Using python properties instead of duplicating them with the get/set functions

2012-05-29 Thread Davide Andreoli
2012/5/29 Kai Huuhko kai.huu...@gmail.com: Currently the python bindings have get/set functions as in the C api, in addition to this it has object properties which have their functionality implemented by simply calling those functions, such as in the below example: def

Re: [E-devel] python-elementary RFC: Using python properties instead of duplicating them with the get/set functions

2012-05-29 Thread Davide Andreoli
2012/5/29 Davide Andreoli d...@gurumeditation.it: 2012/5/29 Kai Huuhko kai.huu...@gmail.com: Currently the python bindings have get/set functions as in the C api, in addition to this it has object properties which have their functionality implemented by simply calling those functions, such as